正确使用sphinx tabularcolumns指令

时间:2015-05-31 17:32:42

标签: python html python-sphinx docutils

我正在尝试使用tabularcolumns指令将.. tabularcolumns:: |C|l| +----------+------+ | Num | Name | +==========+======+ | 1 | One | +----------+------+ | 2 | Two | +----------+------+ 指令置于中心位置http://sphinx-doc.org/markup/misc.html?highlight=tabularcolumns#tables

简单示例:

SELECT * FROM `billing` 
where source = 'VOIP' 
group by month(timestamp), year(timestamp) 
order by month(timestamp) desc, year(timestamp) asc

根据我的阅读,这应该居中第一列,但第一列的HTML输出始终保持对齐。我误读或误解了什么吗?

使用sphinx-build版本1.3.1

0 个答案:

没有答案