What is the sphinx directive for including a document into another document?
问题 In my documentation I have an examples directory where I can say, .. literalinclude:: examples/1_basic_usage.py :language: python :linenos: ..which works great, because they're code and they're formatted correctly as code. However, I want to do a literalinclude on non-code documents. At the entire-project level I already have AUTHORS , DESCRIPTION , ATTRIBUTION , etc. defined, and I want to (essentially) paste them in-place but I don't know how. Hopefully it's similar to this NON WORKING