Sourced from mistune's releases.
v3.2.1
🐞 Bug Fixes
- Resolve Windows compatibility issues in file inclusion and tests - by
@Yuki9814(25471)- Escape html text - by
@lepture(a3cb6)- Update link reference - by
@lepture(85eb5)- Handle escaped dollar signs in inline math - by
@saschabuehrlein lepture/mistune#370 (7bd57)- Escape id of toc - by
@lepture(04880)- Escape id of headings - by
@lepture(28556)- Remove double-encoding of image alt text - by
@lawrence3699(0d6f3)- Escape xml for math plugin - by
@lepture(5fa09)- Use strict regex for image's height and width - by
@lepture(8d0cb)View changes on GitHub
v3.2.0
🚀 Features
- Support footnotes that start on the next line. - by
@kylechui(2677e)- Properly handle code blocks inside footnotes. - by
@kylechui(0516c)- Support python 3.14 - by
@lepture(7e0eb)🐞 Bug Fixes
- Render ref links and footnotes in footnotes. - by
@lepture(bd90e)- Render ref links in TOC. - by
@lemon24(a0a01)- Update typing for mypy upgrades - by
@lepture(8d49c)- Render correct html for footnotes - by
@lepture(9b622)View changes on GitHub
Sourced from mistune's changelog.
Version 3.2.1
Released on May 3, 2026
- Escape link in
render_toc_ul.- Escape text in math plugin.
- Fix regex for math plugin.
- Escape heading's ID attribute.
- Fix
LINK_TITLE_REto prevent DoS.- Escape class attribute for admonition directive.
- Remove double-encoding of image alt text.
- Escape class attribute for image directive.
- Fix width/height attribute for image directive.
Version 3.2.0
Released on Dec 23, 2025
- Announce supports for python 3.14
- Fix footnotes plugins for code blocks, ref links, blockquote and etc.
- Fix ref links in TOC.
067f908
chore: release 3.2.1bf55030
Merge pull request #438
from saschabuehrle/fix/issue-3708d0cb75
fix: use strict regex for image's height and width5fa092e
fix: escape xml for math plugin71ec947
Merge pull request #440
from lawrence3699/fix/image-alt-double-encoding0d6f3d8
fix: remove double-encoding of image alt text2855622
fix: escape id of headings04880a0
fix: escape id of toc7bd5709
fix: handle escaped dollar signs in inline math (fixes #370)85eb54f
fix: update link reference