Андрей
Андрей

Reputation: 65

New line in cell sphinx csv-table

With this symbol "|" had broke my table. And after new lines have blank line. How i can have multiple normal lines in csv-table cell sphinx alabast

.. csv-table:: 
:header: Version, Date, Description
:widths: 15, 20, 50


34343, 02/04/2015, "| Added *httsdfsdps* support"
3434, 14/11/2014, "| Added *folsdfsdlow* parameter to *hgfhfg*"
34343, 13/05/2014, "| Added *fdsf* parameter to *dfgdfgdfgdfgfdgdfgdfgdf*"
21321, 29/10/2013, "| Added *sdfsdf* parameter to *dfgsgfds*           
| Deprecated afsfsdf interface"
312321, 05/03/2013, "| Added *dsfsdfsddsfsd* parameter to *dfgdfgdfgdfgdfgdf*             
| Documented *dfgdgd*"
213211, 28/02/2013, "Added *!=* operator in *fghfghfg*"
2132132, 26/02/2013, "Added *dsfsdfsdfsdfsdfsd* in *fghf*"
213219, 07/02/2013, "| Added *jsonhash* event format
| Added *filter* parameter in event connection
| Added *group* and *map* parameter to *nph-muu-sf*"
21321321, 30/01/2013, "| Added *height* parameter in *dfgdfgdfdfg*
| Added *dfgdfgdfgdf* in dfgdfgdfgdf"

csv table

Upvotes: 3

Views: 4707

Answers (1)

Humbalan
Humbalan

Reputation: 717

As @mzjn already has mentioned: it depends on the theme you use whether a table has borders at the end of cells. You can check this with the developer tools of the e .g. firefox browser. If in the "table.docutils td" definition (css) there is a line like "border-width: 1px 0px;" it is the theme's responsibility. In this case you could override this definition in an own "layout.html". More information in Sphinx Templating

Upvotes: 0

Related Questions