File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ $ markdown-it
25
25
markdown-it-py [version 0.1.0] (interactive)
26
26
Type Ctrl-D to complete input, or Ctrl-C to exit.
27
27
>>> > **hallo** there!
28
- ...
28
+ ...
29
29
<blockquote>
30
30
<p><strong>hallo</strong> there!</p>
31
31
</blockquote>
Original file line number Diff line number Diff line change 1
- from importlib import import_module
1
+ # from importlib import import_module
2
2
3
3
from setuptools import find_packages , setup
4
4
Original file line number Diff line number Diff line change 6
6
from markdown_it .extensions .myst_role import myst_role_plugin
7
7
from markdown_it .doc_renderer import DocRenderer
8
8
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
+ )
10
15
tokens = md .parse (
11
16
"""\
12
17
---
You can’t perform that action at this time.
0 commit comments