I have the following text in a .rst file:
Some text.
* Heading
| The first topic.
| Another topic which is very verbose and spans multiple lines ad infinitum.
Topic continued......................................
and I would like it to render as:
Some text.
* Heading
The first topic.
Another topic which is very verbose and spans multiple lines ad infinitum....................
Topic continued.............
However it renders like this in Html:
Some text.
* Heading| The first topic.| Another topic which is very verbose and spans multiple lines ad infinitum .................... Topic continued
The Sphinx documentation suggests using the |
symbol to signal a line break as do several posts here on Stackoverflow, but I have been unable to get it to work. I would like a method which is independent of the Sphinx builder being used.
Blank lines between the elements do work but do not give the visual effect that I want.
What do I need to do?