Bump markdown from 3.4.4 to 3.5.1
Bumps markdown from 3.4.4 to 3.5.1.
Changelog
Sourced from markdown's changelog.
[3.5.1] -- 2023-10-31
Fixed
- Fix a performance problem with HTML extraction where large HTML input could trigger quadratic line counting behavior (#1392).
- Improve and expand type annotations in the code base (#1394).
[3.5] -- 2023-10-06
Added
Add
permalink_leading
configuration option to the toc extension (#1339)A new boolean option
permalink_leading
controls the position of the permanent link anchors generated withpermalink
. Settingpermalink_leading
toTrue
will cause the links to be inserted at the start of the header, before any other header content. The default behavior forpermalink
is to append permanent links to the header, placing them after all other header content.Changed
- Add support for cPython version 3.12 (and PyPy 3.10) and drop support for Python version 3.7 (#1357).
- Refactor changelog to use the format defined at https://keepachangelog.com/.
- Update the list of empty HTML tags (#1353).
- Add customizable TOC title class to TOC extension (#1293).
- Add API documentation of the code base which is generated by mkdocstrings (#1220).
Fixed
- Fix a corner case in admonitions where if an indented code block was provided as the first block, the output would be malformed (#1329).
Commits
-
f50ac47
Refactor changelog -
6662053
TOC extension: Add new boolean option permalink_prepend (#1339) - See full diff in compare view