Hi,
Something I have been wondering myself in the past is why do comment
lines cause additional newlines where you wouldn't expect them ?
Comment Blocks do not show this behaviour (they do not result in any
newlines).
This example (3 commented lines):
--------
- Item 1
// - Irrelevant stuff
// - Commented out
// Just because I can
- Item 2
--------
results in (only) 2 empty newlines:
--------
<div class="ulist"><ul>
<li>
<p>
Item 1
</p>
</li>
<li>
<p>
Item 2
</p>
</li>
</ul></div>
--------
Is this on purpose ?
--
Dag