Skip to content

Commit f9ca0c6

Browse files
committed
fix pre-commit
1 parent 2fa1eb1 commit f9ca0c6

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ markdown-it
2525
markdown-it-py [version 0.1.0] (interactive)
2626
Type 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>

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from importlib import import_module
1+
# from importlib import import_module
22

33
from setuptools import find_packages, setup
44

try_running_renderer.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
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
---

0 commit comments

Comments
 (0)