diff options
author | David Robillard <d@drobilla.net> | 2021-03-28 13:42:35 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-28 21:57:29 -0500 |
commit | f8a59da9c492b7df38f53ba96505313e931d76cc (patch) | |
tree | 5bf1e44e67f8662894a37fbc84d770585f5957dd /doc/conf.py.in | |
parent | ac0ac05ccf96dee4406db8bdd4d098d3de61c01f (diff) | |
download | serd-f8a59da9c492b7df38f53ba96505313e931d76cc.tar.gz serd-f8a59da9c492b7df38f53ba96505313e931d76cc.tar.bz2 serd-f8a59da9c492b7df38f53ba96505313e931d76cc.zip |
Add high-level documentation
Diffstat (limited to 'doc/conf.py.in')
-rw-r--r-- | doc/conf.py.in | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/doc/conf.py.in b/doc/conf.py.in index bc64c9f3..cfb67183 100644 --- a/doc/conf.py.in +++ b/doc/conf.py.in @@ -4,6 +4,7 @@ project = "Serd" copyright = "2021, David Robillard" author = "David Robillard" release = "@SERD_VERSION@" +version = "@SERD_VERSION@" # General configuration @@ -25,11 +26,9 @@ _opaque = [ "SerdCaretImpl", "SerdCursorImpl", "SerdEnvImpl", - "SerdIterImpl", "SerdModelImpl", "SerdNodeImpl", "SerdNodesImpl", - "SerdRangeImpl", "SerdReaderImpl", "SerdSinkImpl", "SerdStatementImpl", @@ -54,6 +53,7 @@ nitpick_ignore = list(map(lambda x: ("c:identifier", x), _opaque)) # HTML output html_copy_source = False +html_secnumber_suffix = " " html_short_title = "Serd" html_static_path = ["../_static"] html_theme = "sphinx_lv2_theme" @@ -116,3 +116,12 @@ else: "globaltoc_maxdepth": 1, "globaltoc_collapse": True, } + +# EPub output + +epub_show_urls = "no" +epub_cover = ("../_static/serd.svg", "") +epub_description = "Serd, a lightweight library for working with RDF" +epub_title = "Serd @SERD_VERSION@ Documentation" +epub_basename = "Serd-@SERD_VERSION@" +epub_css_files = ["epubstyle.css"] |