--- no longer terminates autodetected links by default.
md.linkifier.set('---', true) will return old behaviour.
Major version bumped, because internals or linkify-it was changed.
You will not be affected anyhow, if not used direct access to
require('linkify-it/re') for customizations.
6.1.1 / 2016-06-21
Render code_inline & code_block attributes if exist.
6.1.0 / 2016-06-19
Updated fence renderer to not mutate token. Token stream should be
immutable after renderer call.
6.0.5 / 2016-06-01
Process \r the same way as \n and \r\n\, #252.
6.0.4 / 2016-05-30
Added Token.attrGet() method for convenience, #251.
6.0.3 / 2016-05-30
Security fix: possible ReDOS in linkify-it (forced bump of linkify-it &
uc-micro dependencies). New installs will use fixed packages automatically,
but we bumped markdown-it version for sure & for web builds.
6.0.2 / 2016-05-16
Fix: should not escape twice content of image alt attribute, #246.
6.0.1 / 2016-04-02
Improve support of missing values in tables, #224.
6.0.0 / 2016-02-11
Maintenance release. Version bump caused by notable changes in CM spec
(multiline setext headers, no spaces inside links, ...). API was not changed.
Fit CM 0.24 spec requirements.
Fixed nesting limit check in inline blocks, #197.
Fixed posible tail loss in CLI ouput.
5.1.0 / 2016-01-07
Token: added .attrSet() & .attrJoin() methods.
Highlighter: allow wrapper override (if result starts with "<pre").
5.0.3 / 2016-01-04
Allow single column and mismatched columns count in tables.
Smartquotes: take into account adjacent tokens.
Fill content property in image token with alt source.
5.0.2 / 2015-11-20
Fix meta information (token.markup and token.info) for autolink tokens.
Fix closure compiler collisions (don't use reserved words), #159.
4.4.0 / 2015-07-18
Updated HTML blocks logic to CM 0.21 spec.
Minor fixes.
4.3.1 / 2015-07-15
Allow numbered lists starting from zero.
Fix class name injection in fence renderer.
4.3.0 / 2015-06-29
linkify-it dependency update (1.2.0). Now accepts dash at the end of links.
4.2.2 / 2015-06-10
CM spec 0.20.
Added support for multichar substituition in smartquites, #115.
Fixed code block render inside blockquites, #116.
Doc fixes.
4.2.1 / 2015-05-01
Minor emphasis update to match CM spec 0.19.
4.2.0 / 2015-04-21
Bumped linkify-it version to
1.1.0. Now links with IP hosts and without protocols are not linkified by
default, due possible collisions with some version numbers patterns (0.5.0.0).
You still can return back old behaviour by md.linkify.set({ fuzzyIP: true }).
4.1.2 / 2015-04-19
Bumped linkifier version. More strict 2-chars tald support for links without
schema. Should not linkify things like io.js and node.js.
4.1.1 / 2015-04-15
Improved pipe chars support in table cells, #86 (thanks to @jbt).
4.1.0 / 2015-03-31
Security: disabled data: URLs by default (except some image mimes), to avoid
possible XSS. Version bumped, because features changed (formally). If you did
not used data: URLs, consider this version as 4.0.4 (no API changes).
Simplified link validator code. Now more easy to understand and to copy
into your projects for customization.
4.0.3 / 2015-03-25
Updated linkifier.
Smartquotes rule cleanup (#76).
Fixed replacements rule bug in PhantomJS (#77).
4.0.2 / 2015-03-22
Fixed emphasis marker fields in tokens (#69).
Fixed html block tokens with numbers in name (#74).
4.0.1 / 2015-03-13
Updated linkify-it version.
Added custom container plugin demo.
4.0.0 / 2015-03-11
Breaking internal API changes. See v4 migration notes. In usual case you will need to update plugins.
Token internals changed
Unified the most of renderer methods.
Changed tokens creation - use state.push(...) (see sources)
Moved normalizeUrl() to root class as .normalizeLink() &
added normalizeLinkText() method.
Moved .validateUrl() to root class and simplified logic - no more need to
replace entities.
Joined md unescape & replace entities logic to utils.unescapeAll().
Removed replaceEntities() in utils.
md.utils.lib now exposes useful libs for plugins.
Use entities data from external package.
Fixed emphasis regression, caused by CM v0.18 spec (#65).