Skip to content

Commit b873507

Browse files
authored
🚀 Release v0.6.0 (#137)
1 parent b77a18b commit b873507

2 files changed

Lines changed: 28 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Change Log
22

3+
## 0.6.0 - 2026-05-07
4+
5+
- ✨ NEW: Add GFM autolink and composite GFM plugins (#135)
6+
7+
The `gfm_autolink` plugin implements [GFM autolink literals](https://github.github.com/gfm/#autolinks-extension-),
8+
auto-linking URLs and email addresses without requiring angle brackets:
9+
10+
```markdown
11+
Visit www.example.com or contact user@example.com
12+
```
13+
14+
The `gfm` composite plugin enables a full Github Flavored Markdown (GFM)-like configuration in a single call
15+
(tables, strikethrough, autolinks, task lists, alerts, and footnotes).
16+
17+
See [the GitHub docs](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) for more information.
18+
19+
**Requires markdown-it-py >= 4.1.0.**
20+
21+
- ✨ NEW: Add superscript plugin and tests, thanks to @elijahgreenstein (#128)
22+
23+
Ported from [markdown-it-sup](https://github.com/markdown-it/markdown-it-sup).
24+
Renders superscript text using `^..^` syntax:
25+
26+
```markdown
27+
29^th^ of May
28+
```
29+
330
## 0.5.0 - 2025-08-11
431

532
- ⬆️ Drop Python 3.9, which is EoL next month <https://devguide.python.org/versions> and allow for the, soon to be released, markdown-it-py v4.

mdit_py_plugins/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.5.0"
1+
__version__ = "0.6.0"

0 commit comments

Comments
 (0)