File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ $ markdown-it
2525markdown-it-py [version 0.1.0] (interactive)
2626Type Ctrl-D to complete input, or Ctrl-C to exit.
2727>>> > **hallo** there!
28- ...
28+ ...
2929<blockquote>
3030<p><strong>hallo</strong> there!</p>
3131</blockquote>
Original file line number Diff line number Diff line change 1- from importlib import import_module
1+ # from importlib import import_module
22
33from setuptools import find_packages , setup
44
Original file line number Diff line number Diff line change 66 from markdown_it .extensions .myst_role import myst_role_plugin
77 from markdown_it .doc_renderer import DocRenderer
88
9- md = MarkdownIt ().use (front_matter_plugin ).use (myst_block_plugin ).use (myst_role_plugin )
9+ md = (
10+ MarkdownIt ()
11+ .use (front_matter_plugin )
12+ .use (myst_block_plugin )
13+ .use (myst_role_plugin )
14+ )
1015 tokens = md .parse (
1116 """\
1217 ---
You can’t perform that action at this time.
0 commit comments