Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sphinx import parent dir rst file?

I need to create one sphinx project for each module,

and each module share some common rsts, like company info, license, etc.

My project tree is like this:

./conf.py
./index.rst
./intro.rst
./about.rst

./device1/conf.py
./device1/index.rst 

I write this in ./device1/index.rst, and it is not worked, how could I import parent rst files?

.. toctree::
   :maxdepth: 1

   ../intro
   ../about
like image 609
linjunhalida Avatar asked Dec 29 '10 00:12

linjunhalida


1 Answers

I found a way to do this:

.. include:: ../intro.rst

but it will include all the texts... maybe it is the only way?

like image 166
linjunhalida Avatar answered Sep 22 '22 05:09

linjunhalida