@@ -61,20 +61,34 @@ def get_version():
6161# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
6262# ones. ***Replace "mathjax" with "imgmath" for epub output.***
6363extensions = [
64- 'recommonmark' ,
6564 'sphinx.ext.coverage' ,
65+ 'sphinx.ext.graphviz' ,
6666 'sphinx.ext.ifconfig' ,
67+ 'sphinx.ext.intersphinx' ,
6768 'sphinx.ext.mathjax' ,
6869 'sphinx.ext.todo' ,
69- 'sphinx.ext.autosectionlabel' ,
70- 'sphinxcontrib.actdiag' ,
71- 'sphinxcontrib.blockdiag' ,
72- 'sphinxcontrib.nwdiag' ,
73- 'sphinxcontrib.packetdiag' ,
74- 'sphinxcontrib.rackdiag' ,
75- 'sphinxcontrib.seqdiag' ,
70+ 'sphinxcontrib.spelling' ,
71+ "sphinx_multiversion" ,
7672]
7773
74+ #extensions = [
75+ # 'recommonmark',
76+ # 'sphinx.ext.coverage',
77+ # 'sphinx.ext.ifconfig',
78+ # 'sphinx.ext.mathjax',
79+ # 'sphinx.ext.todo',
80+ # 'sphinx.ext.autosectionlabel',
81+ # 'sphinxcontrib.actdiag',
82+ # 'sphinxcontrib.blockdiag',
83+ # 'sphinxcontrib.nwdiag',
84+ # 'sphinxcontrib.packetdiag',
85+ # 'sphinxcontrib.rackdiag',
86+ # 'sphinxcontrib.seqdiag',
87+ #]
88+
89+ # Text files with lists of words that shouldn't fail the spellchecker:
90+ spelling_word_list_filename = ['dict.txt' , ]
91+
7892# Add any paths that contain templates here, relative to this directory.
7993templates_path = ['_templates' ]
8094
@@ -255,8 +269,8 @@ def get_version():
255269# -- Configure recommonmark to use AutoStructify -----------------------------
256270# Docs: https://recommonmark.readthedocs.io/en/latest/auto_structify.html
257271
258- import recommonmark
259- from recommonmark .transform import AutoStructify
272+ # import recommonmark
273+ # from recommonmark.transform import AutoStructify
260274
261275# -- Set up Google Analytics
262276# -- using approach at https://stackoverflow.com/questions/9444342/adding-a-javascript-script-tag-some-place-so-that-it-works-for-every-file-in-sph/41885884#41885884
@@ -278,7 +292,7 @@ def setup(app):
278292 'auto_toc_tree_section' : 'Contents' ,
279293 }, True )
280294
281- app .add_transform (AutoStructify )
295+ # app.add_transform(AutoStructify)
282296
283297 app .add_js_file ('https://www.googletagmanager.com/gtag/js?id=G-QLSP3FJWGT' )
284298 app .add_js_file (None , body = GA_INVOKE_JS )
0 commit comments