Skip to content

Releases: markedjs/marked

v5.1.1

07 Jul 14:46
Compare
Choose a tag to compare

5.1.1 (2023-07-07)

Bug Fixes

v5.1.0

10 Jun 03:15
Compare
Choose a tag to compare

5.1.0 (2023-06-10)

Bug Fixes

Features

v5.0.5

07 Jun 04:24
Compare
Choose a tag to compare

5.0.5 (2023-06-07)

Bug Fixes

v5.0.4

30 May 22:28
Compare
Choose a tag to compare

5.0.4 (2023-05-30)

Bug Fixes

v5.0.3

26 May 16:56
Compare
Choose a tag to compare

5.0.3 (2023-05-26)

Bug Fixes

v5.0.2

11 May 15:20
Compare
Choose a tag to compare

5.0.2 (2023-05-11)

Bug Fixes

  • Clarify deprecation messages for default parameters (#2802) (763e9de)

v5.0.1

06 May 20:52
Compare
Choose a tag to compare

5.0.1 (2023-05-06)

Bug Fixes

  • only warn if langPrefix is changed (#2796) (d193694)
    The deprecated options warnings can be turned off by default by using:

    marked.use({
      mangle: false,
      headerIds: false,
    });

    For the cli you can use:

    marked --no-mangle --no-header-ids ...
    

v5.0.0

02 May 04:37
Compare
Choose a tag to compare

5.0.0 (2023-05-02)

Bug Fixes

Features

BREAKING CHANGES

  • Warnings will be logged to the console if these options are used including headerIds, mangle, and langPrefix which are on by default.
    These warnings can be turned off by default by using:
    marked.use({
      mangle: false,
      headerIds: false,
    });
    If you need these options you can use the extensions listed below.
  • deprecate options
    Option Replacement
    highlight, langPrefix, and callback marked-highlight
    mangle marked-mangle
    baseUrl marked-base-url
    smartypants marked-smartypants
    xhtml marked-xhtml
    headerIds and headerPrefix marked-gfm-heading-id
  • minimum supported node version v18

v4.3.0

22 Mar 05:54
Compare
Choose a tag to compare

4.3.0 (2023-03-22)

Bug Fixes

Features

v4.2.12

14 Jan 06:41
Compare
Choose a tag to compare

4.2.12 (2023-01-14)

Sorry for all of the quick releases. We were testing out different ways to build the files for releases. v4.2.5 - v4.2.12 have no changes to how marked works. The only addition is the version number in the comment in the build files.

Bug Fixes

  • revert to build script in ci (d2ab474)