Errata. > This works but renders properly as PDF only. Html version is rendered > as one line (new lines are ignored). > [options="header"] > |======= > |assertions|`assertNotNull(myList); > assertFalse(myList.isEmpty()); > assertEquals(1, myList.size());` > |======= > > This works fine for HTML but with PDF I have too much space between > each line. > [options="header"] > |======= > |assertions|`assertNotNull(myList);` > `assertFalse(myList.isEmpty());` > `assertEquals(1, myList.size());` > |======= Wrong. I need additional new lines to avoid having a one-liner - both as PDF and html.
[options="header"] |======= |assertions|`assertNotNull(myList);` `assertFalse(myList.isEmpty());` `assertEquals(1, myList.size());` |======= -- Regards, Tomek Kaczanowski http://kaczanowscy.pl/tomek -- You received this message because you are subscribed to the Google Groups "asciidoc" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/asciidoc?hl=en.
