1
Sphinx文檔生成器提供了only
markup。例如,下面將只包括外部文件「唯一」如果HTML生成:獅身人面像文件生成器:「只」不是?
.. only:: html
.. include:: a.rst
但我將如何設置「不僅」?以下似乎不工作,甚至用大括號:
.. only:: not html
.. include:: b.rst
Sphinx文檔生成器提供了only
markup。例如,下面將只包括外部文件「唯一」如果HTML生成:獅身人面像文件生成器:「只」不是?
.. only:: html
.. include:: a.rst
但我將如何設置「不僅」?以下似乎不工作,甚至用大括號:
.. only:: not html
.. include:: b.rst
.. only:: not html
應該將其指定爲每Sphinx documentation的正確方法。以下作品使用sphinx-build 1.2.2:
.. only:: html
This should be HTML format only.
.. only:: text
This should be text format only.
.. only:: not html
.. include:: nohtml.rst
This should be in everything except HTML.
.. only:: not text
.. include:: notext.rst
This should be in everything except Text.
你的'no.text.rst'和'nohtml.rst'的內容是什麼? – xuhdev