forked from IntersectMBO/plutus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.py
128 lines (99 loc) · 3.55 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import sys
import os
import sphinx_rtd_theme
import recommonmark
from recommonmark.transform import AutoStructify
from os.path import abspath, join, dirname
sys.path.insert(0, abspath(join(dirname(__file__))))
sys.path.append(os.path.abspath('exts'))
# -- Doc config values
marlowe_playground_url = "https://alpha.marlowe.iohkdev.io/"
plutus_playground_url = "https://alpha.plutus.iohkdev.io/"
rst_epilog = """
.. _Plutus Playground: {0}
.. _Marlowe Playground: {1}
""".format(plutus_playground_url, marlowe_playground_url)
# -- RTD configuration ------------------------------------------------
on_rtd = os.environ.get("READTHEDOCS", None) == "True"
# This is used for linking and such so we link to the thing we're building
rtd_version = os.environ.get("READTHEDOCS_VERSION", "latest")
if rtd_version not in ["stable", "latest"]:
rtd_version = "stable"
# -- Project information -----------------------------------------------------
project = 'The Plutus Platform and Marlowe'
copyright = '2020, IOHK'
author = 'IOHK'
# The full version, including alpha/beta/rc tags
release = '1.0.0'
# -- General configuration ---------------------------------------------------
master_doc = 'index'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
"sphinx_rtd_theme",
'recommonmark',
'sphinx_markdown_tables',
'sphinxemoji.sphinxemoji',
"sphinx.ext.intersphinx",
'hs_domain',
]
primary_domain = 'hs'
haddock_mapping = {}
haddock_dir = os.getenv('SPHINX_HADDOCK_DIR', None)
if haddock_dir:
for entry in os.scandir(haddock_dir):
if entry.is_dir():
html_dir = os.path.join(entry.path, 'html')
inv_file = os.path.join(html_dir, 'objects.inv')
if os.path.exists(inv_file):
haddock_mapping[entry.name] = (html_dir, inv_file)
intersphinx_mapping = haddock_mapping
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
html_static_path = ['_static']
source_suffix = {
'.rst': 'restructuredtext',
'.md': 'markdown',
}
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = [
'haddock', # Otherwise it tries to pick up the README.md's in the Haddock doc!
'README.md'
]
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = "sphinx_rtd_theme"
html_theme_options = {
'logo_only': False,
'display_version': False,
'prev_next_buttons_location': 'bottom',
'style_external_links': False,
'style_nav_header_background': '#fcfcfc',
# Toc options
'collapse_navigation': False,
'sticky_navigation': True,
'navigation_depth': 4,
'includehidden': True,
'titles_only': False
}
html_logo = "cardano-logo.png"
html_context = {
"display_github": True, # Add 'Edit on Github' link instead of 'View page source'
"github_user": "input-output-hk",
"github_repo": "plutus",
"github_version": "master",
"conf_py_path": "/doc/",
"source_suffix": source_suffix,
}
# -- Custom Document processing ----------------------------------------------
def setup(app):
app.add_config_value('recommonmark_config', {
'enable_auto_doc_ref': False,
'enable_auto_toc_tree': False,
}, True)
app.add_transform(AutoStructify)