From: Werner H. <no...@li...> - 2007-08-29 10:28:33
|
Hello, i like to get the following HTML Code with Markdown: <ul class="features"> <li>Item 1</li> <li>Item 2</li> </ul> thats what i tried: {@class=features} * Item 1 * Item 2 But its not working and produce: <p class="features"> </p> <ul> <li> Item 1 </li> <li> Item 2 </li> </ul> The <p> Tag ist closed before the List instead after, i removed the empty newline: {@class=features} * Item 1 * Item 2 and now: <p class="features"> <em> Item 1 </em> Item 2 </p> I could life with the surrounding <p> tag, i just like to apply css to the unordered list. Any idea? Regards, Werner Hartnagel -- .-.________ ----/ \_)_______) Werner Hartnagel ( ()___) Dotmagic Internet Solutions ()__) Tel: +49-1801-5557774981 ----\___()_) Web: http://www.dotmagic.de |