aboutsummaryrefslogtreecommitdiff
path: root/doc/conf.py
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2024-08-14 08:25:22 -0300
committerDavid Bremner <david@tethera.net>2025-06-22 16:36:17 -0300
commit848e7ae6700ffeda9615584868f8207f9f71d394 (patch)
tree1730ad8a2b1329b9639c0857358a9d9a47bb5cd2 /doc/conf.py
parent63665f1ebd6eff7753b7798add657fd6dbd110d6 (diff)
doc/emacs: start a section on notmuch-message-mode
This is mostly just copying docstrings, but putting them into sections makes them more discoverable.
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 9cbcb432..1cc9961e 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -47,7 +47,7 @@ if tags.has('WITH_EMACS'):
# Hacky reimplementation of include to workaround limitations of
# sphinx-doc
lines = ['.. include:: /../emacs/rstdoc.rsti\n\n'] # in the source tree
- for file in ('notmuch.rsti', 'notmuch-lib.rsti', 'notmuch-hello.rsti', 'notmuch-show.rsti', 'notmuch-tag.rsti', 'notmuch-tree.rsti'):
+ for file in ('notmuch.rsti', 'notmuch-lib.rsti', 'notmuch-hello.rsti', 'notmuch-show.rsti', 'notmuch-tag.rsti', 'notmuch-tree.rsti', 'notmuch-maildir-fcc.rsti'):
lines.extend(open(rsti_dir+'/'+file))
rst_epilog = ''.join(lines)
del lines