resp
[ikiwiki] / doc / plugins / conditional / discussion.mdwn
1 Would there be a way for this plugin to emit fewer blank lines (i.e. *none at all*)?
2
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...
7
8 * **Hurd** and *About*,
9 * *Todo* and **Mach**,
10 * **Mach** and **Mig**.
11
12 --[[tschwinge]]
13
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]]
15
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]]
21
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]]
24
25 >>>> Okay, that would explain the linebreak between 1 and 3.  But then, why are all linebreaks removed between 3 and 5?
26
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]]
32
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.
35 >>>>> --[[Joey]]