5
我正在嘗試將我們的API文檔及其專有文檔生成器模式遷移到reStructuredText。 ,讓最困難的時候這件作品,我們的API細節的表格形式,直接在HTML編碼,一拉:如何在不使用RST表格格式的情況下在reStructuredText中生成表格輸出?
--------+------------+--------+--------------------------------+
Param | Required | Type | Description
----------------------------------------------------------------
id | Yes | int | This is the ID of the record...
content | No | string | Optional string contents...
(即這是目前編碼爲<tr><td class='param'>id</td><td class='required'>Yes</td>...
)
我想做的事情這在RST中,但它在語義上,而不僅僅是使用RST表格式。但我不能找到這個處理的方式我想,這會是這樣
:.. parameter-table:: My Parameter Table
.. item::
:param: "id"
:required: true
:type: "int"
:desc: "This is the ID of the record..."
我怎樣才能在新結構化做到這一點的custom directives任何好的例子嗎?
我喜歡這一個。我同意它只有90% - 我寧願如果字段是更明確的「字段」,而不是隻是位置 - 但它很簡單,很乾淨,可能比自定義指令的複雜性更好。謝謝! – mrisher