diff options
author | Georg Brandl <georg@python.org> | 2008-03-09 21:32:24 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-09 21:32:24 +0000 |
commit | ccfd92e558528aaebcdc63fc700b8119e76c9b52 (patch) | |
tree | 37f97620ec64b5bb9d3a76486d6696667bbc920e /doc/ext.py | |
parent | a686a5a03af4cde0450fd067b94a672904020ab7 (diff) | |
download | sphinx-git-ccfd92e558528aaebcdc63fc700b8119e76c9b52.tar.gz |
First pass at Sphinx documentation. Most of it still needs to be written :)
Diffstat (limited to 'doc/ext.py')
-rw-r--r-- | doc/ext.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/ext.py b/doc/ext.py new file mode 100644 index 000000000..581ea476a --- /dev/null +++ b/doc/ext.py @@ -0,0 +1,4 @@ +def setup(app): + app.add_description_unit('directive', 'dir', 'directive') + app.add_description_unit('role', 'role', 'role') + app.add_description_unit('confval', 'confval', 'configuration value') |