blob: 06ae7be018d9d7a3f43feec074ffef4842a63bf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
'''
Base configuration file for building OPNFV docs
You can override this configuration by putting 'conf.py' in the document
directory (e.g. docs/how-to-use-docs/conf.py). If there is no 'conf.py'
in the document directory, this file will be copied to that directory
before the document builder jobs ('opnfv-docs-verify' and 'opnfv-docs-merge').
See https://wiki.opnfv.org/documentation/tools .
'''
extensions = ['sphinxcontrib.httpdomain']
needs_sphinx = '1.3'
master_doc = 'index'
pygments_style = 'sphinx'
html_use_index = False
numfig = True
html_logo = 'opnfv-logo.png'
latex_domain_indices = False
latex_logo = 'opnfv-logo.png'
|