使用此 RST 文件:
.. cssclass:: myclass
.. _important:
Something really important
--------------------------
...还有这个电话:
sphinx-build -C ./ ./html ./index.rst
...以下 HTML 结果:
<section class="myclass" id="something-really-important">
<span id="important"></span>
<h1>Something really important</h1>
</section>
如果 Sphinx 可以将
class="myclass"
放入 span
元素中,而不是 放入 section
元素中,那对我来说真的很方便。
这可能吗?
CSS 允许您通过使用类似
的内容来识别此类
<span>
section.myclass span {
color: blue;
font-weight: bold;
}