-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
83 lines (69 loc) · 2.08 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# -*- coding: utf-8 -*-
#
# Configuration file for the Sphinx documentation builder.
#
# This file does only contain a selection of the most common options. For a
# full list see the documentation:
# http://www.sphinx-doc.org/en/stable/config
import sys, os
import otcdocstheme
extensions = [
'sphinx.ext.autodoc',
'otcdocstheme',
'sphinx.ext.viewcode',
'yasfb',
]
# -- Project information -----------------------------------------------------
project = u'MCSPS Release Notes'
copyright = u'2020, Frank Kloeker'
author = u'Frank Kloeker'
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
source_parsers = {
'.md': 'recommonmark.parser.CommonMarkParser',
}
source_suffix = ['.rst', '.md' ]
# The master toctree document.
master_doc = 'index'
language = None
exclude_patterns = []
pygments_style = 'sphinx'
#html_theme = 'otcdocs'
html_theme = 'classic'
html_theme_options = {
'footerbgcolor': '#ffffff',
'footertextcolor': '#e5007d',
'sidebarbgcolor': '#e5007d',
'sidebarbtncolor': '#ededed',
'sidebartextcolor': '#eeeeee',
'sidebarlinkcolor': '#000000',
'relbarbgcolor': '#d0d0d0',
'relbartextcolor': '#a20074',
'relbarlinkcolor': '#a80257',
'bgcolor': '#ffffff',
'textcolor': '#6c6c6c',
'linkcolor': '#4b4b4b',
'visitedlinkcolor': '#6c6c6c',
# 'headbgcolor':
# 'headtextcolor':
# 'headlinkcolor':
'codebgcolor': '#ededed',
'codetextcolor': '#a4a4a4',
'bodyfont': 'Tele-GroteskNor',
'headfont': 'Tele-GroteskFet',
}
html_static_path = ['_static']
html_extra_path = ['_images']
htmlhelp_basename = 'MCSPS Release Notes'
texinfo_documents = [
(master_doc, 'Blogs as code', u'MCSPS Release Notes Documentation',
author, 'Blogs as code', 'One line description of project.',
'Miscellaneous'),
]
# gettext_compact = False # optional.
feed_base_url = 'http://k8s-releases.readthedocs.io/en/latest'
feed_author = 'MCSPS Team'
feed_description = "K8S Release Blog"