Skip to content

Releases: hexojs/hexo-renderer-marked

v6.3.0

02 Apr 11:45
680f3ae
Compare
Choose a tag to compare

New Features

  • Added filter marked:use for direct access to the marked.use function by @crycode-de in #273

Fixed

Dependencies

Misc

  • chore: update repository key from a string to an object in package.json by @yoshinorin in #275
  • chore: excludes lock files from git by @yoshinorin in #276

New Contributors

Full Changelog: v6.2.0...v6.3.0

v6.2.0

02 Dec 07:32
1b09354
Compare
Choose a tag to compare

New Features

Full Changelog

v6.1.1...v6.2.0

v6.1.1

12 Jul 13:47
906eae3
Compare
Choose a tag to compare

Fixes

Dependencies

Full Changelog: v6.1.0...v6.1.1

v6.1.0

04 Jun 05:23
3483731
Compare
Choose a tag to compare

Fixes

Dependencies

CI

Docs

  • dosc: http to https and use example.com for example domains by @yoshinorin in #249

Full Changelog

v6.0.0...v6.1.0

v6.0.0

07 Oct 13:36
74d024e
Compare
Choose a tag to compare

Breaking Changes

New Features

Dependencies

Docs

New Contributors

Full Changelog: 5.0.0...v6.0.0

5.0.0

29 Jan 13:32
4304601
Compare
Choose a tag to compare

Breaking Changes

Refactor

Dependencies

Docs

  • Explain security risk of using this plugin by @tomap in #210

Full Changelog: v4.1.0...5.0.0

v4.1.0

14 Aug 15:04
669b057
Compare
Choose a tag to compare

New features

CI/CD

Dependencies

  • chore(deps-dev): bump mocha from 8.4.0 to 9.0.3 (#195)

Misc

  • Upgrade to GitHub-native Dependabot (#188)

v4.0.0

11 Feb 14:17
2602b92
Compare
Choose a tag to compare

Breaking Changes

Feature

  • feat: add descriptionLists options (#179) @SukkaW
    • Enable support for description lists syntax.
      • Currently description lists syntax is not in neither CommonMark or GFM, hexo-renderer-marked only provides the option for backward compatibility.
      • By disabling the descriptionLists, markdown rendering performance will be improved by a lot.

Docs

Misc

3.3.0

27 Sep 02:18
cf5a047
Compare
Choose a tag to compare

Feature

  • feat: anchorAlias option to set custom header id [#172]
    • once enabled, for example in ## [foo](#bar), id will be set as "bar".

Fix

  • fix(postAsset): support post in a subfolder [#173]
    • a post could be in a subfolder like source/_posts/example/lorem/

3.2.0

04 Sep 07:59
646dad4
Compare
Choose a tag to compare

Features

  • feat: mangle option [#164]
    • a built-in option of marked
    • only useful against a basic crawler used by spam bot.
  • feat: disableNunjucks option [#166]
    • enable this option to disable processing of Nunjucks tag {{ }} {% %}, particularly useful if you're not going to use tag plugins.
  • feat: extend filter to tokenizer [#165]
  • feat: 'quotes' option to override smartypants [#161]
    • it's now possible to specify the quote symbols to replace.
    • e.g. quotes: '«»“”'

Fixes

  • fix: handle invalid URL [#163]
    • invalid URL like http://localhost:4000lorem is no longer encoded.
  • fix: autolink option should not apply on markdown syntax [#162]
    • autolink: no longer affects <http://example.com>.
    • on another note, marked renderer doesn't detect example.com, if a link doesn't starts with protocol (e.g. http://), a link must starts with www to be detected (for autolink).