Skip to content

Commit

Permalink
Merge pull request #3117 from drafish/fix_markdown_parse
Browse files Browse the repository at this point in the history
fix markdown parse issue
  • Loading branch information
ryestew committed Sep 28, 2022
2 parents 7f7699c + 61b9e80 commit 8a00fba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Remix libraries work as a core of native plugins of Remix IDE. Read more about l
Steps to build this project as as:
```
pip3 install sphinx sphinx_rtd_theme
pip3 install recommonmark
pip3 install myst-parser
git clone https://github.com/ethereum/remix-ide.git
cd docs/
make html
Expand Down
9 changes: 7 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,19 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['recommonmark'] # required for sphinx v3.0.0
extensions = ['myst_parser'] # required for sphinx v3.0.0
suppress_warnings = ['myst.header']
myst_disable_syntax = ['image']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
source_suffix = ['.rst', '.md']
source_suffix = {
'.rst': 'restructuredtext',
'.md': 'markdown',
}


# The encoding of source files.
Expand Down

0 comments on commit 8a00fba

Please sign in to comment.