When I put ^action^ and ^if^ on their own lines (and probably other export codes), they add newlines in the export, which I don’t want. For example, the following code:
So many...
^action()^
^action()^
^value('chicken')^
...blank lines
produces:
<p>So many...</p>
chicken
<p>...blank lines</p>
I don’t want those extra blank lines in there. The only way I’ve figured out how to avoid them is to put all the action code on a single line with no spaces:
No more...
^action()^^action()^^value('chicken')^
...blank lines
produces:
<p>No more...</p>
chicken
<p>...blank lines</p>
Is there a way to prevent ^if^ / ^action^ / etc from emitting a newline even when they’re on their own line, so that I don’t have to mash all of the export codes onto a single line?