Hi, I basically want to get this HTML output:
- Paragraphs
- First paragraph.
- Second paragraph.
In this way, I can add a vertical separation (margin-top) between both
paragraphs.
However using RedCloth I cannot get it:
- Paragraphs := First paragraph.
Second paragraph.
maps to:
- Paragraphs
- First paragraph.
Second paragraph.
RedCloth inserts a
so it’s not possible to simulate a vertical
separation with N pixels between both “paragraphs”. Is there a
workaround for achieving it?
Thanks a lot.