我正在尝试使用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