summaryrefslogtreecommitdiffstats
path: root/bitbake/doc/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/doc/conf.py')
-rw-r--r--bitbake/doc/conf.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/doc/conf.py b/bitbake/doc/conf.py
index 722c79230b..197f2757aa 100644
--- a/bitbake/doc/conf.py
+++ b/bitbake/doc/conf.py
@@ -32,6 +32,11 @@ copyright = '2004-%s, Richard Purdie, Chris Larson, and Phil Blundell' \
32 % datetime.datetime.now().year 32 % datetime.datetime.now().year
33author = 'Richard Purdie, Chris Larson, and Phil Blundell' 33author = 'Richard Purdie, Chris Larson, and Phil Blundell'
34 34
35# external links and substitutions
36extlinks = {
37 'yocto_docs': ('https://docs.yoctoproject.org%s', None),
38 'oe_lists': ('https://lists.openembedded.org%s', None),
39}
35 40
36# -- General configuration --------------------------------------------------- 41# -- General configuration ---------------------------------------------------
37 42
@@ -40,6 +45,7 @@ author = 'Richard Purdie, Chris Larson, and Phil Blundell'
40# ones. 45# ones.
41extensions = [ 46extensions = [
42 'sphinx.ext.autosectionlabel', 47 'sphinx.ext.autosectionlabel',
48 'sphinx.ext.extlinks',
43] 49]
44autosectionlabel_prefix_document = True 50autosectionlabel_prefix_document = True
45 51