Releases: showdownjs/showdown
Releases · showdownjs/showdown
1.8.4 (2017-12-05)
Bug Fixes
- tables: raw html inside code tags in tables no longer breaks tables (4ef4c5e), closes #471
1.8.3 (2017-11-28)
Bug Fixes
- literalMidWordAsterisks: no longer treats colon as alphanumeric char (21194c8), closes #461
- spanGamut: code spans are hashed after parsing (f4f63c5), closes #464
- tables: pipe character in code spans no longer breaks table (0c933a0), closes #465
1.8.2 (2017-11-11)
Bug Fixes
- fenced codeblocks: add tilde as fenced code block delimiter (c956ede), closes #456
- openLinksInNewWindow: hash links are not affected by the option (11936ec), closes #457
1.8.1 (2017-11-01)
Dependencies update
- package: update yargs to version 10.0.3 (#447) (906b26d)
Bug Fixes
- CDNjs: bump version to fix version missmatch with CDNjs (#452)
1.8.0 (2017-10-24)
NOTICE
Don't use the CDNjs version of this release. See issue #452 for more details.
Bug Fixes
- autolinks: prevent _ and * to be parsed in links (61929bb), closes #444
Features
-
ellipsis: add auto-ellipsis support (25f1978)
-
Example:
input
output
<p>this is an ellipsis…</p>
-
emoji: add emoji support through option emoji
(5b8f1d3), closes #448
-
Usage:
var conv = new showdown.Converter({emoji: true});
-
Example:
input
this is a smile :smile: emoji
output
<p>this is a smile 😄 emoji</p>
-
start ordered lists at an arbitrary number: add support for defining the first item number of ordered lists (9cdc35e), closes #377
-
Example:
input
output
<ol start="3">
<li>foo</li>
<li>bar</li>
<li>baz</li>
</ol>
-
underline: add EXPERIMENTAL support for underline (084b819), closes #450
BREAKING CHANGES
- start ordered lists at an arbitrary number: Since showdown now supports starting ordered lists at an arbitrary number, list output may differ.
1.7.6 (2017-10-06)
Bug Fixes
- tables: tables are properly rendered when followed by a single linebreak and a list (d88b095), closes #443
- tables: trailing spaces no longer prevent table parsing (66bdd21), closes #442
1.7.5 (2017-10-02)
Bug Fixes
- html-comments: changed regex to prevent malformed long comment to freeze showdown (3efcd10), closes #439
1.7.4 (2017-09-08)
Bug Fixes
- helper.isArray: replace a.constructor === Array with Array.isArray (466a2eb), closes #425
- loader: allow AMD loader to be used within Node env (ff24bdb)
Features
- base64-wrapping: support for wrapping base64 strings (8c593a4), closes #429
1.7.3 (2017-08-23)
Bug Fixes
- github flavor: add backslashEscapesHTMLTags to GFM flavor (5284439)
- literalMidWordAsterisks: option no longer treats punctuation as word character (8f05be7), closes #398
- tables: allow for one column table (fef110c), closes #406
Features
- rawHeaderId: Remove only spaces, ' and " from generated header ids (1791cf0), closes #409
- rawPrefixHeaderId: add option to prevent showdown from modifying the prefix (ff26c08), closes #409
1.7.2 (2017-08-05)
Bug Fixes
- githubMentions: githubMentions now works with openLinksInNewWindow options (1194d88), closes #403
- lists: fix multi paragraph lists with sublists (a2259c0), closes #397
- tablesHeaderId: fix missmatch of option name (51e4693), closes #412
Features
- backslashEscapesHTMLTags: backslash escapes HTML tags (5a5aff6), closes #374