12

私はスフィンクスを学ぼうとしていますが、基本的な例だけに固執しています。make htmlソースディレクトリので次のエラーが発生します。

Running Sphinx v1.1.3
loading pickled environment... not yet created
building [html]: targets for 2 source files that are out of date
updating environment: 2 added, 0 changed, 0 removed
reading sources... [100%] intro                                                 
/home/owner/Desktop/doc/index.rst:11: ERROR: Error in "toctree" directive:
invalid option block.

.. toctree::
   :maxdepth: 2
   intro.rst
looking for now-outdated files... none found
pickling environment... done
checking consistency... /home/owner/Desktop/doc/intro.rst:: WARNING: document isn't included in any toctree
done
preparing documents... done
writing output... [100%] intro                                                  
writing additional files... genindex search
copying static files... done
dumping search index... done
dumping object inventory... done
build succeeded, 2 warnings.

Build finished. The HTML pages are in _build/html.

introどちらも機能しないように見える代わりに、参照も試みintro.rstました。index.rstintro.rst同じディレクトリにあります。sphinx-quickstartすべてのデフォルトオプションを使用してプロジェクトを作成しました。

4

1 に答える 1

23

ディレクティブのオプションとその内容の間に空白行が必要です。また、ファイル拡張子は必要ありません。これに変更します:

.. toctree::
   :maxdepth: 2

   intro
于 2012-09-14T14:27:53.070 に答える