From: Dave P. <dav...@gm...> - 2018-12-26 07:40:43
|
On Wed, 26 Dec 2018 at 02:53, Humberto Ayres Pereira <hum...@pa...> wrote: > Background: I'm used to have some text before labels. This usually works on Github and other places: > > ######## What do you hope the above line produces? > > Some text before list > * Item 1 > * Item 2 > * Item 3 > > ######## > > This doesn't seem to work with python-markdown. I only get it to work if I provide > > ######## > * Item 2 > * Item 3 > ######## Two newlines are required to separate blocks. ######## * Item 2 This block level layout obeys this rule. Without that 2 newlines, you will have one block. Some text before list * Item 1 This is one block, you require two, so use the required layout? HTH -- Dave Pawson XSLT XSL-FO FAQ. Docbook FAQ. |