File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 2.0.1 - 2022-24-01
4
+
5
+ - 🐛 FIX: Crash when file ends with empty blockquote line.
6
+ - ✨ NEW: Add ` inline_definitions ` option.
7
+ This option allows for ` definition ` token to be inserted into the token stream, at the point where the definition is located in the source text.
8
+ It is useful for cases where one wishes to capture a "loseless" syntax tree of the parsed Markdown (in conjunction with the ` store_labels ` option).
9
+
3
10
## 2.0.0 - 2021-12-03
4
11
5
12
- ⬆️ Update: Sync with markdown-it v12.1.0 and CommonMark v0.30
Original file line number Diff line number Diff line change 1
1
"""A Python port of Markdown-It"""
2
2
__all__ = ("MarkdownIt" ,)
3
- __version__ = "2.0.0 "
3
+ __version__ = "2.0.1 "
4
4
5
5
from .main import MarkdownIt
You can’t perform that action at this time.
0 commit comments