Esempio n. 1
0
    (master_doc, 'Wallace', u'Wallace Documentation',
     author, 'Wallace', 'One line description of project.',
     'Miscellaneous'),
]

# Documents to append as an appendix to all manuals.
#
# texinfo_appendices = []

# If false, no module index is generated.
#
# texinfo_domain_indices = True

# How to display URL addresses: 'footnote', 'no', or 'inline'.
#
# texinfo_show_urls = 'footnote'

# If true, do not generate a @detailmenu in the "Top" node's menu.
#
# texinfo_no_detailmenu = False

# -- Install demo files -------------------------------------------

import sys
import os
root = os.path.abspath(os.path.dirname(__file__))
sys.path.append(root)

import build_demo_docs
build_demo_docs.build(root)
Esempio n. 2
0
# If false, no module index is generated.
#
# texinfo_domain_indices = True

# How to display URL addresses: 'footnote', 'no', or 'inline'.
#
# texinfo_show_urls = 'footnote'

# If true, do not generate a @detailmenu in the "Top" node's menu.
#
# texinfo_no_detailmenu = False

# -- Allow Markdown files -----------------------------------------

from recommonmark.parser import CommonMarkParser

source_parsers = {'.md': CommonMarkParser}

source_suffix = ['.rst', '.md']

# -- Install demo files -------------------------------------------

import sys
import os
root = os.path.abspath(os.path.dirname(__file__))
sys.path.append(root)

import build_demo_docs
static = build_demo_docs.build(root)
html_static_path.extend(static)