Skip to content

Commit 209e9f1

Browse files
committed
release 1.7.2
1 parent 0bc7bd1 commit 209e9f1

6 files changed

+62
-4
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
<a name="1.7.2"></a>
2+
## [1.7.2](https://github.com/showdownjs/showdown/compare/1.7.1...1.7.2) (2017-08-05)
3+
4+
5+
### Bug Fixes
6+
7+
* **githubMentions:** githubMentions now works with openLinksInNewWindow options ([1194d88](https://github.com/showdownjs/showdown/commit/1194d88)), closes [#403](https://github.com/showdownjs/showdown/issues/403)
8+
* **lists:** fix multi paragraph lists with sublists ([a2259c0](https://github.com/showdownjs/showdown/commit/a2259c0)), closes [#397](https://github.com/showdownjs/showdown/issues/397)
9+
* **tablesHeaderId:** fix missmatch of option name ([51e4693](https://github.com/showdownjs/showdown/commit/51e4693)), closes [#412](https://github.com/showdownjs/showdown/issues/412)
10+
11+
12+
### Features
13+
14+
* **backslashEscapesHTMLTags:** backslash escapes HTML tags ([5a5aff6](https://github.com/showdownjs/showdown/commit/5a5aff6)), closes [#374](https://github.com/showdownjs/showdown/issues/374)
15+
16+
17+
118
<a name="1.7.1"></a>
219
## [1.7.1](https://github.com/showdownjs/showdown/compare/1.7.0...1.7.1) (2017-06-02)
320

dist/showdown.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/showdown.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "showdown",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "A Markdown to HTML converter written in Javascript",
55
"author": "Estevão Santos",
66
"homepage": "http://showdownjs.github.io/showdown/",

performance.json

+1-1
Large diffs are not rendered by default.

performance.log.md

+41
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,47 @@
11
# Performance Tests for showdown
22

33

4+
## [version 1.7.2](https://github.com/showdownjs/showdown/tree/1.7.2)
5+
6+
### Test Suite: Basic (50 cycles)
7+
| test | avgTime | max | min |
8+
|:-----|--------:|----:|----:|
9+
|Simple "Hello World"|0.292|5.780|0.087|
10+
|performance.testfile.md|30.396|53.860|26.054|
11+
12+
### Test Suite: subParsers (20 cycles)
13+
| test | avgTime | max | min |
14+
|:-----|--------:|----:|----:|
15+
|hashHTMLBlocks|4.303|7.798|2.377|
16+
|anchors|0.347|0.647|0.287|
17+
|autoLinks|0.088|0.165|0.063|
18+
|blockQuotes|2.101|5.121|1.738|
19+
|codeBlocks|0.239|0.878|0.184|
20+
|codeSpans|0.252|0.628|0.160|
21+
|detab|0.094|0.129|0.088|
22+
|encodeAmpsAndAngles|0.131|0.733|0.093|
23+
|encodeBackslashEscapes|0.080|0.116|0.070|
24+
|encodeCode|0.939|1.480|0.857|
25+
|escapeSpecialCharsWithinTagAttributes|0.285|0.473|0.243|
26+
|githubCodeBlocks|0.214|1.047|0.140|
27+
|hashBlock|0.068|0.553|0.036|
28+
|hashElement|0.002|0.030|0.000|
29+
|hashHTMLSpans|4.323|6.162|4.004|
30+
|hashPreCodeTags|0.147|0.558|0.109|
31+
|headers|1.176|4.491|0.884|
32+
|horizontalRule|0.216|0.264|0.193|
33+
|images|0.156|0.559|0.118|
34+
|italicsAndBold|0.322|1.013|0.237|
35+
|lists|2.753|5.613|2.328|
36+
|outdent|0.163|0.232|0.140|
37+
|paragraphs|5.109|6.168|4.741|
38+
|spanGamut|4.423|6.149|4.001|
39+
|strikethrough|0.003|0.051|0.000|
40+
|stripLinkDefinitions|0.160|0.226|0.142|
41+
|tables|0.002|0.043|0.000|
42+
|unescapeSpecialChars|0.011|0.046|0.007|
43+
44+
445
## [version 1.7.1](https://github.com/showdownjs/showdown/tree/1.7.1)
546

647
### Test Suite: Basic (50 cycles)

0 commit comments

Comments
 (0)