We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99cde43 commit d6adf66Copy full SHA for d6adf66
CHANGELOG.md
@@ -1,5 +1,12 @@
1
# Change Log
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
10
## 2.0.0 - 2021-12-03
11
12
- ⬆️ Update: Sync with markdown-it v12.1.0 and CommonMark v0.30
markdown_it/__init__.py
@@ -1,5 +1,5 @@
"""A Python port of Markdown-It"""
__all__ = ("MarkdownIt",)
-__version__ = "2.0.0"
+__version__ = "2.0.1"
from .main import MarkdownIt
0 commit comments