python - Correct use of sphinx tabularcolumns directive -
i'm trying center single table column using tabularcolumns directive documented http://sphinx-doc.org/markup/misc.html?highlight=tabularcolumns#tables
simple example:
.. tabularcolumns:: |c|l|  +----------+------+ | num      | name | +==========+======+ | 1        | 1  | +----------+------+ | 2        | 2  | +----------+------+   according reading, should center first column, html output of column 1 left aligned. misreading or misunderstanding something?
using sphinx-build version 1.3.1
 
 
Comments
Post a Comment