blob: 8c7d7e3fcd561f44f9843c03f0f98a61625fd7ce [file] [log] [blame]
Davide Pesavento04af5f22020-06-21 22:02:47 -04001# Configuration file for the Sphinx documentation builder.
Alexander Afanasyev772662a2013-11-21 23:22:40 +00002#
Davide Pesavento04af5f22020-06-21 22:02:47 -04003# This file only contains a selection of the most common options. For a full
4# list see the documentation:
5# https://www.sphinx-doc.org/en/master/usage/configuration.html
Alexander Afanasyev772662a2013-11-21 23:22:40 +00006
Davide Pesavento04af5f22020-06-21 22:02:47 -04007# -- Path setup --------------------------------------------------------------
Alexander Afanasyev772662a2013-11-21 23:22:40 +00008
9# If extensions (or modules to document with autodoc) are in another directory,
10# add these directories to sys.path here. If the directory is relative to the
11# documentation root, use os.path.abspath to make it absolute, like shown here.
Davide Pesavento04af5f22020-06-21 22:02:47 -040012#
13# import os
14# import sys
15# sys.path.insert(0, os.path.abspath('.'))
Alexander Afanasyev772662a2013-11-21 23:22:40 +000016
Davide Pesavento04af5f22020-06-21 22:02:47 -040017
18# -- Project information -----------------------------------------------------
19
20project = 'NDN Packet Format Specification'
21copyright = '2013-2020, Named Data Networking Project'
22
23# The short X.Y version.
24version = '0.3'
25
26# The full version, including alpha/beta/rc tags.
27release = '0.3'
28
29
30# -- General configuration ---------------------------------------------------
Alexander Afanasyev772662a2013-11-21 23:22:40 +000031
32# If your documentation needs a minimal Sphinx version, state it here.
Davide Pesavento04af5f22020-06-21 22:02:47 -040033#
34needs_sphinx = '1.3'
Alexander Afanasyev772662a2013-11-21 23:22:40 +000035
Davide Pesavento04af5f22020-06-21 22:02:47 -040036# Add any Sphinx extension module names here, as strings. They can be
37# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
38# ones.
39extensions = [
40 'sphinxcontrib.bibtex',
41 'sphinxcontrib.fulltoc',
42]
Alexander Afanasyev772662a2013-11-21 23:22:40 +000043
44# The master toctree document.
45master_doc = 'index'
46
Davide Pesavento04af5f22020-06-21 22:02:47 -040047# Add any paths that contain templates here, relative to this directory.
48templates_path = ['_templates']
Alexander Afanasyev772662a2013-11-21 23:22:40 +000049
50# List of patterns, relative to source directory, that match files and
51# directories to ignore when looking for source files.
Davide Pesavento04af5f22020-06-21 22:02:47 -040052# This pattern also affects html_static_path and html_extra_path.
53exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
Alexander Afanasyev772662a2013-11-21 23:22:40 +000054
55
Davide Pesavento04af5f22020-06-21 22:02:47 -040056# -- Options for HTML output -------------------------------------------------
Alexander Afanasyev772662a2013-11-21 23:22:40 +000057
58# The theme to use for HTML and HTML Help pages. See the documentation for
59# a list of builtin themes.
Davide Pesavento04af5f22020-06-21 22:02:47 -040060#
Alexander Afanasyeve2ef9d02013-11-27 02:24:13 +000061html_theme = 'named_data_theme'
Alexander Afanasyev772662a2013-11-21 23:22:40 +000062
Alexander Afanasyev772662a2013-11-21 23:22:40 +000063# Add any paths that contain custom themes here, relative to this directory.
Davide Pesavento04af5f22020-06-21 22:02:47 -040064html_theme_path = ['.']
Alexander Afanasyev772662a2013-11-21 23:22:40 +000065
66# Add any paths that contain custom static files (such as style sheets) here,
67# relative to this directory. They are copied after the builtin static files,
68# so a file named "default.css" will overwrite the builtin "default.css".
69html_static_path = ['_static']
70
Davide Pesavento04af5f22020-06-21 22:02:47 -040071# Disable syntax highlighting.
72highlight_language = 'none'