Skip to content

Commit

Permalink
Add performance benchmark (#88)
Browse files Browse the repository at this point in the history
Add CLI and documentation, benchmarking `myst-parser` against other Python based markdown parsers.
  • Loading branch information
chrisjsewell committed Feb 28, 2020
1 parent cbfa58f commit cf3352c
Show file tree
Hide file tree
Showing 14 changed files with 1,236 additions and 17 deletions.
7 changes: 5 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@
"**/__pycache__": true,
"**/.pytest_cache": true
},
"editor.rulers": [88],
"editor.rulers": [
88
],
"python.formatting.provider": "black",
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
}
"autoDocstring.customTemplatePath": "docstring.fmt.mustache"
}
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def run_apidoc(app):
("py:class", "mistletoe.block_token.Table"),
("py:class", "mistletoe.block_token.Footnote"),
("py:class", "mistletoe.block_token.Paragraph"),
("py:class", "mistletoe.block_token.ThematicBreak"),
("py:class", "mistletoe.base_renderer.BaseRenderer"),
("py:class", "mistletoe.html_renderer.HTMLRenderer"),
("py:class", "mistletoe.span_token.SpanToken"),
Expand Down

0 comments on commit cf3352c

Please sign in to comment.