1 Would there be a way for this plugin to emit fewer blank lines (i.e. *none at all*)?
3 For example, having a look at [this page](http://www.bddebian.com/~wiki/Hurd/)'s sidebar.
4 This [sidebar](http://www.bddebian.com/~wiki/sidebar/)
5 ([source code](http://www.bddebian.com/gitweb/?p=wiki;a=blob_plain;f=sidebar.mdwn))
6 is supposed to have *no* blank lines between...
8 * **Hurd** and *About*,
10 * **Mach** and **Mig**.
14 > The blank lines in this example are coming from the newline after `then="`, and also from the newline before the close quote. If you remove those newlines, I think it should work. --[[Joey]]
16 >> No, that's unfortunately not it, see here:
17 >> [[if test="enabled(trallala)" then="foot"]]
18 >> Continued. But on the other
19 >> [[if test="enabled(trallala)" then="foot" else="hand:"]]
20 >> Continued. --[[tschwinge]]
22 >>> Seems ok, no? The only linebreaks I see in the source are the ones you
23 >>> put at the end of the lines. --[[Joey]]
25 >>>> Okay, that would explain the linebreak between 1 and 3. But then, why are all linebreaks removed between 3 and 5?
27 >>>> 1 No, that's unfortunately not it, see here:
28 >>>> [[if test="enabled(trallala)" then="foot"]]
29 >>>> 3 Continued. But on the other
30 >>>> [[if test="enabled(trallala)" then="foot" else="hand:"]]
31 >>>> 5 Continued. --[[tschwinge]]
33 >>>>> The conditional after 1 evaluates to "", so there's a blank line
34 >>>>> there. The one after 3 evaluates to "hand:", so no blank line there.