Skip to content

Commit d6adf66

Browse files
authored
🚀 RELEASE: v2.0.1 (#188)
1 parent 99cde43 commit d6adf66

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

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+
310
## 2.0.0 - 2021-12-03
411

512
- ⬆️ Update: Sync with markdown-it v12.1.0 and CommonMark v0.30

markdown_it/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""A Python port of Markdown-It"""
22
__all__ = ("MarkdownIt",)
3-
__version__ = "2.0.0"
3+
__version__ = "2.0.1"
44

55
from .main import MarkdownIt

0 commit comments

Comments
 (0)