Home / v1.4.0
Name Modified Size InfoDownloads / Week
Parent folder
mistletoe-1.4.0-py3-none-any.whl 2024-07-14 51.3 kB
README.md 2024-07-14 652 Bytes
v1.4.0 source code.tar.gz 2024-07-14 122.2 kB
v1.4.0 source code.zip 2024-07-14 156.2 kB
Totals: 4 Items   330.4 kB 0

Added

  • Add parent attribute/property (#71 via [#206]).

COMPATIBILITY REMARKS:

  • As the children attribute changed to property, existing code needs to be changed like this: ```diff -hasattr(token, 'children') +token.children is not None

    ...

    -'children' in vars(token) +token.children is not None

    ...

    -getattr(token, 'children', []) +token.children or [] ```

Fixed

  • Incomplete sdist content (#219).

Changed

  • MarkdownRenderer: Keep the original content spacing before the list marker (#213 via [#215]).
  • Bump build/CI scripts.
Source: README.md, updated 2024-07-14