File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Remix libraries work as a core of native plugins of Remix IDE. Read more about l
26
26
Steps to build this project as as:
27
27
```
28
28
pip3 install sphinx sphinx_rtd_theme
29
- pip3 install recommonmark
29
+ pip3 install myst-parser
30
30
git clone https://github.com/ethereum/remix-ide.git
31
31
cd docs/
32
32
make html
Original file line number Diff line number Diff line change 30
30
# Add any Sphinx extension module names here, as strings. They can be
31
31
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
32
32
# ones.
33
- extensions = ['recommonmark' ] # required for sphinx v3.0.0
33
+ extensions = ['myst_parser' ] # required for sphinx v3.0.0
34
+ suppress_warnings = ['myst.header' ]
35
+ myst_disable_syntax = ['image' ]
34
36
35
37
# Add any paths that contain templates here, relative to this directory.
36
38
templates_path = ['_templates' ]
37
39
38
40
# The suffix(es) of source filenames.
39
41
# You can specify multiple suffix as a list of string:
40
- source_suffix = ['.rst' , '.md' ]
42
+ source_suffix = {
43
+ '.rst' : 'restructuredtext' ,
44
+ '.md' : 'markdown' ,
45
+ }
41
46
42
47
43
48
# The encoding of source files.
You can’t perform that action at this time.
0 commit comments