I am using Wiki ad automated program documentation page. I have an external preprocessor , which extracts commented string from Oracle plsql source codes.
BEGIN
-- fictional code
IF --Comm4Wiki
L_PARAM1 >100 THEN
RETURN 'SIZE LIMIT EXCEEDED';--/Comm4Wiki
END IF;
IF --Comm4Wiki
L_PARAM1 >TRUNC(L_PARAM1) THEN RETURN 'FRACTIONS not ACCEPTED';--/Comm4Wiki
END IF;
.
.
.
.
END;
My preprocessor extracts everything between Comm4Wiki tags, inserting 2 lines in a table:
string 1, two lines starting with 4 spaces>
L_PARAM1 >100 THEN RETURN 'SIZE LIMIT EXCEEDED';
string 2>L_PARAM1 >TRUNC(L_PARAM1) THEN RETURN 'FRACTIONS not ACCEPTED';
My Wiki page extracts the lines with sql2wiki.
I do not want to remove leading spaces. How can I manage not to have string1 highlighted because of leading spaces?