File tree Expand file tree Collapse file tree 1 file changed +42
-4
lines changed Expand file tree Collapse file tree 1 file changed +42
-4
lines changed Original file line number Diff line number Diff line change 46
46
'sphinx.ext.inheritance_diagram' ,
47
47
'sphinx_autorun' ,
48
48
"sphinx.ext.intersphinx" ,
49
+ "sphinx-favicon" ,
49
50
]
50
51
#'sphinx-prompt',
51
52
#'recommonmark',
115
116
}
116
117
117
118
# see https://stackoverflow.com/questions/9728292/creating-latex-math-macros-within-sphinx
118
- mathjax_config = {
119
- 'TeX ' : {
120
- 'Macros ' : {
119
+ mathjax3_config = {
120
+ 'tex ' : {
121
+ 'macros ' : {
121
122
# RVC Math notation
122
123
# - not possible to do the if/then/else approach
123
124
# - subset only
167
168
"numpy" : ("http://docs.scipy.org/doc/numpy/" , None ),
168
169
"scipy" : ("http://docs.scipy.org/doc/scipy/reference/" , None ),
169
170
"matplotlib" : ("http://matplotlib.sourceforge.net/" , None ),
170
- }
171
+ }
172
+
173
+ # -------- Options favicon -------------------------------------------------------#
174
+
175
+ html_static_path = ["_static" ]
176
+ # create favicons online using https://favicon.io/favicon-converter/
177
+ favicons = [
178
+ {
179
+ "rel" : "icon" ,
180
+ "sizes" : "16x16" ,
181
+ "static-file" : "favicon-16x16.png" ,
182
+ "type" : "image/png" ,
183
+ },
184
+ {
185
+ "rel" : "icon" ,
186
+ "sizes" : "32x32" ,
187
+ "static-file" : "favicon-32x32.png" ,
188
+ "type" : "image/png" ,
189
+ },
190
+ {
191
+ "rel" : "apple-touch-icon" ,
192
+ "sizes" : "180x180" ,
193
+ "static-file" : "apple-touch-icon.png" ,
194
+ "type" : "image/png" ,
195
+ },
196
+ {
197
+ "rel" : "android-chrome" ,
198
+ "sizes" : "192x192" ,
199
+ "static-file" : "android-chrome-192x192.png " ,
200
+ "type" : "image/png" ,
201
+ },
202
+ {
203
+ "rel" : "android-chrome" ,
204
+ "sizes" : "512x512" ,
205
+ "static-file" : "android-chrome-512x512.png " ,
206
+ "type" : "image/png" ,
207
+ },
208
+ ]
You can’t perform that action at this time.
0 commit comments