We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3e2f75 commit 3599f01Copy full SHA for 3599f01
docs/sphinx/_static/css/custom.css
@@ -0,0 +1,16 @@
1
+/* Display GitHub Flavored Markdown code blocks correctly */
2
+
3
+.rst-content pre {
4
+ background-color: #f5f5f5;
5
+ border-radius: 6px;
6
+ padding: 16px;
7
+ margin: 16px 0;
8
+ overflow-x: auto;
9
+}
10
11
+.rst-content pre code {
12
13
+ white-space: pre;
14
+ border: none;
15
+ padding: 0;
16
docs/sphinx/conf.py
@@ -44,6 +44,8 @@
44
pygments_style = "sphinx"
45
46
html_theme = "sphinx_rtd_theme"
47
+html_static_path = ["_static"]
48
+html_css_files = ["css/custom.css"]
49
50
intersphinx_mapping = {
51
"python": ("https://docs.python.org/3", None),
0 commit comments