No paragraph break after false *if
dfabulich opened this issue · 1 comments
dfabulich commented
Blah blah.
*if false
False!
Next paragraph.
Expected: Two paragraphs: "Blah blah." "Next paragraph."
Actual: One paragraph: "Blah blah. Next paragraph."
The false skipper ignores blank lines, and so it treats the line after "False!" as part of the "if" statement.
dfabulich commented
Work around the bug like this:
Blah blah.
*if false
False!
*comment endif
Next paragraph.