diff options
author | David Robillard <d@drobilla.net> | 2020-12-20 20:20:07 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-21 09:48:06 +0100 |
commit | f95f22013d51133ec1a7b1554878ff354b9f0f21 (patch) | |
tree | 2f65c78412fa9a083bc82e49480ba206fa14a689 /doc/conf.py.in | |
parent | fabf7113483ffd70024df989de3aa9361146d60c (diff) | |
download | serd-f95f22013d51133ec1a7b1554878ff354b9f0f21.tar.gz serd-f95f22013d51133ec1a7b1554878ff354b9f0f21.tar.bz2 serd-f95f22013d51133ec1a7b1554878ff354b9f0f21.zip |
Generate documentation with Sphinx
Diffstat (limited to 'doc/conf.py.in')
-rw-r--r-- | doc/conf.py.in | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/doc/conf.py.in b/doc/conf.py.in new file mode 100644 index 00000000..224b6e77 --- /dev/null +++ b/doc/conf.py.in @@ -0,0 +1,86 @@ +# Project information + +project = "Serd" +copyright = "2020, David Robillard" +author = "David Robillard" +release = "@SERD_VERSION@" + +# General configuration + +language = "en" + +extensions = [ + # 'sphinx_rtd_theme', +] + +# Enable nitpicky mode to get warnings about broken links +# Unfortunately this means we need to explicitly ignore everything external +nitpicky = True +_opaque = [ + "FILE", + "SerdByteSinkImpl", + "SerdByteSourceImpl", + "SerdCursorImpl", + "SerdEnvImpl", + "SerdIterImpl", + "SerdModelImpl", + "SerdNodeImpl", + "SerdNodesImpl", + "SerdRangeImpl", + "SerdReaderImpl", + "SerdSinkImpl", + "SerdStatementImpl", + "SerdWorldImpl", + "SerdWriterImpl", + "int64_t", + "size_t", + "uint32_t", + "uint8_t", + "uintptr_t", + "va_list", +] + +nitpick_ignore = list(map(lambda x: ("c:identifier", x), _opaque)) + +templates_path = ["_templates"] + +pygments_style = "friendly" + +# HTML output + +exclude_patterns = ["xml"] +html_static_path = ["_static"] + +html_theme = "alabaster" +# html_theme = "sphinx_rtd_theme" + +if html_theme == "alabaster": + + html_theme_options = { + "description": "A lightweight library for RDF storage and serialisation", + "donate_url": "http://drobilla.net/pages/donate.html", + # "github_repo": "serd", + # "github_user": "lv2", + "logo": "serd.svg", + "logo_name": True, + "logo_text_align": "center", + "page_width": "80em - 20em", + "sidebar_width": "24em", + } + + html_sidebars = { + "**": [ + "about.html", + "localtoc.html", + "donate.html", + ] + } + +elif html_theme == "sphinx_rtd_theme": + + html_theme_options = { + "sticky_navigation": False, + "collapse_navigation": False, + "navigation_depth": 4, + "display_version": True, + } |