Reputation: 324
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?
Upvotes: 10
Views: 6659
Reputation: 4682
You can use vertical bars at the beginning of lines to produce blank lines in the output. Like this:
Heading
-------
|
|
Paragraph with text.
Upvotes: 11
Reputation: 28747
You have two possible solutions:
Use @mzjn's comment
Create a custom CSS stylesheet that will define padding beneath a table (or above, or both).
Upvotes: 1