All Versions
14
Latest Version
Avg Release Cycle
381 days
Latest Release
1237 days ago

Changelog History
Page 1

  • v2.1.0 Changes

    November 07, 2020

    πŸš€ A minor release, mainly aimed at resolving ambiguity about the import path for blackfriday v2 and delivering minor fixes since last release:

    • Committed to github.com/russross/blackfriday/v2 as the canonical import path for blackfriday v2. (Issue #587)
    • ⬇️ Reduced the amount of dependencies. (PRs #509 and #515)
    • βž• Added a SanitizedAnchorName function. (PR #509)
    • βž• Added Node.IsContainer and Node.IsLeaf methods. (PR #540)
    • πŸ›  Fixed parsing of links that end with a double backslashes. (Issue #510)
    • πŸ›  Fixed an issue where fence length wasn't computed. (PR #505)
    • πŸ‘Œ Improved the default value for the HTMLRendererParameters.FootnoteReturnLinkContents field. (PR #547)
  • v2.1.0-pre.1

    October 27, 2020
  • v2.0.1 Changes

    September 23, 2018

    πŸš€ A minor release, mainly aimed at releasing a version with go.mod.

    • βž• Added go.mod
    • ✨ Enhanced support for info strings in fenced code blocks (issue #410)
    • ⚑️ README updates
    • βž• Added a reference to confluence wiki renderer
    • πŸ›  Fixed HTML entity regex
    • πŸ›  Fixed HTML5 by removing rel="footnote" which is invalid
    • βž• Added NoopenerLinks option that adds rel="noopener" attribute
    • βž• Added heading offset option to HTML renderer
    • πŸ›  Fixed consecutive lists of different kinds
    • πŸ›  Fixed block parsing for fenced code blocks in lists (issue #239)

    Huge thanks to the contributors!
    BjΓΈrn Erik Pedersen (@bep)
    Cameron Moore (@moorereason)
    Dmitri Shuralyov (@dmitshur)
    Emil Melnikov (@emilmelnikov)
    Iain Haslam (@understated)
    Kentaro Matsushita (@kentaro-m)
    Liming Jin (@jinliming2)
    Michael (@michael-k)
    Mitchell Cohen (@mitchchn)
    Nathan Glenn (@garfieldnate)
    Nick Galbreath (@client9)
    Rebecca Turner (@9999years)
    Vas Sudanagunta (@vassudanagunta)

  • v2.0.0 Changes

    August 11, 2017

    πŸ”– Version 2 of Blackfriday is a major overhaul of the API. Feature-wise nothing has changed, but the entire set of types, functions and constants has changed. This was done to make the API have more idiomatic Go look-and-feel, and fix a few bugs inherent in the legacy C-like interface. As a bonus, Blackfriday has become more flexible for extension.

    Highlights:

    • The most common entry point has been simplified. The vast majority of users can now call Run to get what they want:

      outputBytes := blackfriday.Run(inputBytes)

    • Writing your own renderer has become much easier.

    • 0️⃣ It's become very easy to write an extension to an existing renderer, customizing one aspect or another, and leaning back to the default behavior.

    • πŸ“œ You can now parse the Markdown document and obtain the syntax tree. You can manipulate the tree before rendering, or you can use it for data extraction from the Markdown documents.

    • πŸ“š To get all of the above working, documentation has been improved.

  • v1.6.0 Changes

    November 26, 2020

    πŸš€ A minor release, delivering minor fixes since the last release, and resolving ambiguity in the README about the import path for blackfriday v2:

    • Committed to github.com/russross/blackfriday/v2 as the canonical import path for blackfriday v2. (Issue #587)
    • Added HTML_NOOPENER_LINKS HTML renderer option. (Issue #459, PR #570)
    • πŸ›  Fixed parsing of fenced code blocks inside lists. (Issues #495 and #485, PR #521)
    • πŸ›  Fixed an issue where <details> tag was wrapped in <p> tag. (Issue #525, PR #559)
    • πŸ›  Fixed parsing of links that end with a double backslashes. (PR #512)
  • v1.6.0-pre.1

    October 27, 2020
  • v1.5.2 Changes

    September 23, 2018

    πŸš€ A minor release, mainly aimed at releasing a version with go.mod.

    • βž• Added go.mod
    • πŸ›  Fixed block parsing for fenced code blocks in lists (issue #239)
    • βž• Added a link to bfchroma
    • ✨ Enhanced support for info strings in fenced code blocks (issue #410)

    Huge thanks to the contributors!
    BjΓΈrn Erik Pedersen (@bep)
    Nathan Glenn (@garfieldnate)
    Tim Fogarty (@tfogo)
    Yoshiya Hinosawa (@kt3k)

  • v1.5.1 Changes

    February 25, 2018

    ⚑️ Mostly updates to the README. Contains a fix to HTML5 by removing rel="footnote", which is no longer valid.

    Huge thanks to the contributors!
    Iain Haslam (@IainHaslam)
    Vas Sudanagunta (@vassudanagunta)

  • v1.5 Changes

    August 26, 2017
    • Added HTML_SMARTYPANTS_QUOTES_NBSP, which allows having nonbreakable spaces
      inside Β« French guillemets Β» (Issue #378)
    • Added EXTENSION_JOIN_LINES, which joins newline-separated lines into a
      single paragraph. Useful for Chinese text.
    • πŸ‘ Implemented support for CDATA section (Issue #165)
    • πŸ›  Fixed links with parentheses (Issue #116)
    • πŸ›  Fixed fenced code blocks inside lists (Issue #228)
    • πŸ›  Fixed regression, panic in reference links (Issues #172 and #173)
    • πŸ›  Fixed adjacent list merging (Issue #235)
    • πŸ›  Fixed definition lists that contain other lists (Issue #263)
    • πŸ›  Fixed fenced code pre-processing (Issue #279)
    • πŸ›  Fixed panic with recursive footnotes (Issue #241)

    πŸš€ Huge thanks to everyone who contributed to this release!
    Alex Yatskov (@FooSoft)
    BjΓΈrn Erik Pedersen (@bep)
    Cameron Moore (@moorereason)
    Dmitri Shuralyov (@shurcooL)
    Haishan Zhou (@choueric)
    KΓ©vin Dunglas (@dunglas)
    Nat Welch (@icco)
    Shawn Smith (@shawnps)
    Tom Kwok (@tomkwok)

  • v1.4

    November 11, 2015