Skip to content

Commit

Permalink
Make benchmark fairer to Python-Markdown.
Browse files Browse the repository at this point in the history
  • Loading branch information
averms committed Oct 24, 2021
1 parent da131ad commit c435307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def inner():
@benchmark('markdown')
def run_markdown(package):
with open(TEST_FILE, 'r', encoding='utf-8') as fin:
return package.markdown(fin.read(), extensions=['extra'])
return package.markdown(fin.read(), extensions=['fenced_code', 'tables', 'footnotes'])

@benchmark('mistune')
def run_mistune(package):
Expand Down

0 comments on commit c435307

Please sign in to comment.