updated tags for new release #25
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -52,6 +52,7 @@ tests/sdr/
|
|||
|
||||
# Sphinx documentation
|
||||
docs/build/
|
||||
docs/_build/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ This is a practical reference for the ``ria`` CLI from ``ria-toolkit-oss``.
|
|||
.. contents:: Contents
|
||||
:local:
|
||||
:depth: 2
|
||||
:backlinks: none
|
||||
|
||||
|
||||
1) Installation and Setup
|
||||
|
|
|
|||
29
docs/source/_static/custom.css
Normal file
29
docs/source/_static/custom.css
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
/* Change the hex values below to customize heading colours */
|
||||
|
||||
.rst-content h1 { color: #2c3e50; }
|
||||
.rst-content h2,
|
||||
.rst-content h2 a { color: #ffffff !important; font-size: 22px !important; }
|
||||
|
||||
.rst-content h3,
|
||||
.rst-content h3 a { color: #ffffff !important; font-size: 16px !important; }
|
||||
|
||||
.rst-content h3 code { font-size: inherit !important; }
|
||||
|
||||
.rst-content .admonition.warning {
|
||||
background: #1a1a2e !important;
|
||||
border-left: 4px solid #c0392b !important;
|
||||
}
|
||||
|
||||
.rst-content .admonition.warning .admonition-title {
|
||||
background: #c0392b !important;
|
||||
color: #ffffff !important;
|
||||
}
|
||||
|
||||
.rst-content .admonition.warning p {
|
||||
color: #ffffff !important;
|
||||
}
|
||||
.rst-content h4 { color: #404040; }
|
||||
|
||||
.highlight * { color: #ffffff !important; }
|
||||
|
||||
.ria-cmd { color: #2980b9 !important; }
|
||||
8
docs/source/_static/custom.js
Normal file
8
docs/source/_static/custom.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
document.addEventListener('DOMContentLoaded', function () {
|
||||
document.querySelectorAll('.highlight pre').forEach(function (pre) {
|
||||
pre.innerHTML = pre.innerHTML.replace(
|
||||
/((?:^|\n|>))(ria)(?=[ \t]|<)/g,
|
||||
'$1<span class="ria-cmd">$2</span>'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
@ -73,3 +73,6 @@ def setup(app):
|
|||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
||||
|
||||
html_theme = 'sphinx_rtd_theme'
|
||||
html_static_path = ['_static']
|
||||
html_css_files = ['custom.css']
|
||||
html_js_files = ['custom.js']
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user