如何用Sphinx制作斑马桌?或者如何在Sphinx中使用jQuery?

时间:2010-12-21 22:25:44

标签: jquery python python-sphinx

我认为从Sphinx生成的表并不漂亮,因为它为表生成以下HTML代码。

<table border="1" class="docutils">
<colgroup>
<col width="43%" />
<col width="29%" />
<col width="29%" />
</colgroup>
<thead valign="bottom">
<tr><th class="head">Graph</th>
<th class="head">HIR</th>
<th class="head">AIR</th>
</tr>
</thead>
<tbody valign="top">
<tr><td>Graph</td>
<td>Circuit</td>
<td>System</td>
</tr>
</tbody>
</table>

我如何才能成为漂亮的人,例如斑马桌?

HTML生成的html有jQuery,根据this site,只有一行代码可以有一个斑马表,但我不知道如何使用jQuery制作斑马表。

$("tr:nth-child(odd)").addClass("odd");
  • 问:如何在Sphinx中使用jQuery?
  • 问:还有其他方法可以让Sphinx使用斑马表吗?

1 个答案:

答案 0 :(得分:0)

我在doctools.js中添加以下代码

$(document).ready(function() {
  Documentation.init();
  $('tbody tr:even').css('background-color','#dddddd');
});