mistletoe v0.6.2 Release Notes

Release Date: 2018-05-27 // almost 6 years ago
  • Features :

    • CommonMark compliant CodeFence;
    • CommonMark compliant BlockCode;
    • CommonMark compliant HTMLBlock;
    • CommonMark compliant HTMLSpan;
    • CommonMark compliant AutoLink;
    • CommonMark compliant InlineCode;
    • CommonMark compliant Heading;
    • CommonMark compliant SetextHeading;
    • โž• added span-level token LineBreak;
    • ๐Ÿ‘ better handling of lazy-continuation in Quote;
    • Footnotes can be defined in any block-level containers.

    ๐Ÿ›  Fixes :

    • loose lists conform to CommonMark spec (#44, thanks @huettenhain);
    • ๐Ÿ“œ not parsing sub-lists deeper than two levels (#46, thanks @daerhu);
    • FileWrapper._index should not go below -1.

    Development :

    • ๐Ÿ”จ refactored handling of SetextHeading;
    • โœ‚ removed block_tokenizer.MismatchException;
    • โœ‚ removed _children attribute, using children directly; (potentially breaking change?)
    • ๐Ÿ“‡ renamed Separator to ThematicBreak;
    • ๐Ÿ“‡ renamed FootnoteBlock to Footnote;
    • tokenize and tokenize_inner returns lists of tokens;
    • ๐Ÿ”จ refactored CommonMark testing script.