mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
release 1.7.2
This commit is contained in:
parent
0bc7bd1bd8
commit
209e9f134a
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,3 +1,20 @@
|
|||
<a name="1.7.2"></a>
|
||||
## [1.7.2](https://github.com/showdownjs/showdown/compare/1.7.1...1.7.2) (2017-08-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **githubMentions:** githubMentions now works with openLinksInNewWindow options ([1194d88](https://github.com/showdownjs/showdown/commit/1194d88)), closes [#403](https://github.com/showdownjs/showdown/issues/403)
|
||||
* **lists:** fix multi paragraph lists with sublists ([a2259c0](https://github.com/showdownjs/showdown/commit/a2259c0)), closes [#397](https://github.com/showdownjs/showdown/issues/397)
|
||||
* **tablesHeaderId:** fix missmatch of option name ([51e4693](https://github.com/showdownjs/showdown/commit/51e4693)), closes [#412](https://github.com/showdownjs/showdown/issues/412)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **backslashEscapesHTMLTags:** backslash escapes HTML tags ([5a5aff6](https://github.com/showdownjs/showdown/commit/5a5aff6)), closes [#374](https://github.com/showdownjs/showdown/issues/374)
|
||||
|
||||
|
||||
|
||||
<a name="1.7.1"></a>
|
||||
## [1.7.1](https://github.com/showdownjs/showdown/compare/1.7.0...1.7.1) (2017-06-02)
|
||||
|
||||
|
|
BIN
dist/showdown.js
vendored
BIN
dist/showdown.js
vendored
Binary file not shown.
BIN
dist/showdown.min.js
vendored
BIN
dist/showdown.min.js
vendored
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "showdown",
|
||||
"version": "1.7.1",
|
||||
"version": "1.7.2",
|
||||
"description": "A Markdown to HTML converter written in Javascript",
|
||||
"author": "Estevão Santos",
|
||||
"homepage": "http://showdownjs.github.io/showdown/",
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,47 @@
|
|||
# Performance Tests for showdown
|
||||
|
||||
|
||||
## [version 1.7.2](https://github.com/showdownjs/showdown/tree/1.7.2)
|
||||
|
||||
### Test Suite: Basic (50 cycles)
|
||||
| test | avgTime | max | min |
|
||||
|:-----|--------:|----:|----:|
|
||||
|Simple "Hello World"|0.292|5.780|0.087|
|
||||
|performance.testfile.md|30.396|53.860|26.054|
|
||||
|
||||
### Test Suite: subParsers (20 cycles)
|
||||
| test | avgTime | max | min |
|
||||
|:-----|--------:|----:|----:|
|
||||
|hashHTMLBlocks|4.303|7.798|2.377|
|
||||
|anchors|0.347|0.647|0.287|
|
||||
|autoLinks|0.088|0.165|0.063|
|
||||
|blockQuotes|2.101|5.121|1.738|
|
||||
|codeBlocks|0.239|0.878|0.184|
|
||||
|codeSpans|0.252|0.628|0.160|
|
||||
|detab|0.094|0.129|0.088|
|
||||
|encodeAmpsAndAngles|0.131|0.733|0.093|
|
||||
|encodeBackslashEscapes|0.080|0.116|0.070|
|
||||
|encodeCode|0.939|1.480|0.857|
|
||||
|escapeSpecialCharsWithinTagAttributes|0.285|0.473|0.243|
|
||||
|githubCodeBlocks|0.214|1.047|0.140|
|
||||
|hashBlock|0.068|0.553|0.036|
|
||||
|hashElement|0.002|0.030|0.000|
|
||||
|hashHTMLSpans|4.323|6.162|4.004|
|
||||
|hashPreCodeTags|0.147|0.558|0.109|
|
||||
|headers|1.176|4.491|0.884|
|
||||
|horizontalRule|0.216|0.264|0.193|
|
||||
|images|0.156|0.559|0.118|
|
||||
|italicsAndBold|0.322|1.013|0.237|
|
||||
|lists|2.753|5.613|2.328|
|
||||
|outdent|0.163|0.232|0.140|
|
||||
|paragraphs|5.109|6.168|4.741|
|
||||
|spanGamut|4.423|6.149|4.001|
|
||||
|strikethrough|0.003|0.051|0.000|
|
||||
|stripLinkDefinitions|0.160|0.226|0.142|
|
||||
|tables|0.002|0.043|0.000|
|
||||
|unescapeSpecialChars|0.011|0.046|0.007|
|
||||
|
||||
|
||||
## [version 1.7.1](https://github.com/showdownjs/showdown/tree/1.7.1)
|
||||
|
||||
### Test Suite: Basic (50 cycles)
|
||||
|
|
Loading…
Reference in New Issue
Block a user