File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
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
+ background-color : # f5f5f5 ;
13
+ white-space : pre;
14
+ border : none;
15
+ padding : 0 ;
16
+ }
Original file line number Diff line number Diff line change 45
45
46
46
html_theme = "sphinx_rtd_theme"
47
47
48
+ # These folders are copied to the documentation's HTML output
49
+ html_static_path = ['_static' ]
50
+
51
+ # These paths are either relative to html_static_path
52
+ # or fully qualified paths (eg. https://...)
53
+ html_css_files = [
54
+ 'css/custom.css' ,
55
+ ]
56
+
57
+
48
58
intersphinx_mapping = {
49
59
"python" : ("https://docs.python.org/3" , None ),
50
60
"elastic-transport" : (
You can’t perform that action at this time.
0 commit comments