Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to insert a blank line in restructured text?

I'm drafting a document using Sphinx 1.1.3. When I insert two tables one after another, those tables show up too close in HTML, so I want to insert a blank line between them. How do I do that?

like image 283
Fumito Hamamura Avatar asked May 20 '13 02:05

Fumito Hamamura


2 Answers

You can use vertical bars at the beginning of lines to produce blank lines in the output. Like this:

Heading
-------

|
|

Paragraph with text.
like image 200
Stefan Collier Avatar answered Nov 11 '22 12:11

Stefan Collier


You have two possible solutions:

  1. Use @mzjn's comment

  2. Create a custom CSS stylesheet that will define padding beneath a table (or above, or both).

like image 40
Ian Stapleton Cordasco Avatar answered Nov 11 '22 10:11

Ian Stapleton Cordasco