Skip to content

Commit 32541e6

Browse files
committed
release 1.8.3
1 parent d620332 commit 32541e6

File tree

6 files changed

+57
-4
lines changed

6 files changed

+57
-4
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="1.8.3"></a>
2+
## [1.8.3](https://github.com/showdownjs/showdown/compare/1.8.2...1.8.3) (2017-11-28)
3+
4+
5+
### Bug Fixes
6+
7+
* **literalMidWordAsterisks:** no longer treats colon as alphanumeric char ([21194c8](https://github.com/showdownjs/showdown/commit/21194c8)), closes [#461](https://github.com/showdownjs/showdown/issues/461)
8+
* **spanGamut:** code spans are hashed after parsing ([f4f63c5](https://github.com/showdownjs/showdown/commit/f4f63c5)), closes [#464](https://github.com/showdownjs/showdown/issues/464)
9+
* **tables:** pipe character in code spans no longer breaks table ([0c933a0](https://github.com/showdownjs/showdown/commit/0c933a0)), closes [#465](https://github.com/showdownjs/showdown/issues/465)
10+
11+
12+
113
<a name="1.8.2"></a>
214
## [1.8.2](https://github.com/showdownjs/showdown/compare/1.8.1...1.8.2) (2017-11-11)
315

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.8.2",
3+
"version": "1.8.3",
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.8.3](https://github.com/showdownjs/showdown/tree/1.8.3)
5+
6+
### Test Suite: Basic (50 cycles)
7+
| test | avgTime | max | min |
8+
|:-----|--------:|----:|----:|
9+
|Simple "Hello World"|0.927|32.654|0.147|
10+
|performance.testfile.md|32.485|62.282|28.403|
11+
12+
### Test Suite: subParsers (20 cycles)
13+
| test | avgTime | max | min |
14+
|:-----|--------:|----:|----:|
15+
|hashHTMLBlocks|5.454|18.356|2.385|
16+
|anchors|0.504|3.110|0.290|
17+
|autoLinks|0.114|0.284|0.069|
18+
|blockQuotes|2.269|3.374|1.997|
19+
|codeBlocks|0.250|0.840|0.192|
20+
|codeSpans|0.352|1.231|0.249|
21+
|detab|0.115|0.179|0.087|
22+
|encodeAmpsAndAngles|0.105|0.162|0.095|
23+
|encodeBackslashEscapes|0.108|0.235|0.075|
24+
|encodeCode|0.994|1.915|0.847|
25+
|escapeSpecialCharsWithinTagAttributes|0.237|0.475|0.160|
26+
|githubCodeBlocks|0.202|0.771|0.151|
27+
|hashBlock|0.071|0.493|0.039|
28+
|hashElement|0.002|0.036|0.001|
29+
|hashHTMLSpans|4.162|4.708|3.959|
30+
|hashPreCodeTags|0.130|0.331|0.112|
31+
|headers|1.409|4.622|1.044|
32+
|horizontalRule|0.351|2.655|0.196|
33+
|images|0.199|0.545|0.131|
34+
|italicsAndBold|0.269|0.357|0.235|
35+
|lists|3.057|4.403|2.686|
36+
|outdent|0.153|0.307|0.136|
37+
|paragraphs|6.455|7.901|5.708|
38+
|spanGamut|4.256|5.542|3.930|
39+
|strikethrough|0.005|0.089|0.000|
40+
|stripLinkDefinitions|0.248|0.394|0.225|
41+
|tables|0.002|0.028|0.001|
42+
|unescapeSpecialChars|0.009|0.039|0.007|
43+
44+
445
## [version 1.8.2](https://github.com/showdownjs/showdown/tree/1.8.2)
546

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

0 commit comments

Comments
 (0)