mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
release 1.8.2
This commit is contained in:
parent
11936ecb77
commit
5d70b921b1
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
|||
<a name="1.8.2"></a>
|
||||
## [1.8.2](https://github.com/showdownjs/showdown/compare/1.8.1...1.8.2) (2017-11-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **fenced codeblocks:** add tilde as fenced code block delimiter ([c956ede](https://github.com/showdownjs/showdown/commit/c956ede)), closes [#456](https://github.com/showdownjs/showdown/issues/456)
|
||||
* **openLinksInNewWindow:** hash links are not affected by the option ([11936ec](https://github.com/showdownjs/showdown/commit/11936ec)), closes [#457](https://github.com/showdownjs/showdown/issues/457)
|
||||
|
||||
|
||||
|
||||
<a name="1.8.1"></a>
|
||||
## [1.8.1](https://github.com/showdownjs/showdown/compare/1.8.0...1.8.1) (2017-11-01)
|
||||
|
||||
|
|
|
@ -3,10 +3,15 @@ We would like to thank everyone that contributed to this library. If you find ou
|
|||
|
||||
# Donors
|
||||
|
||||
- **Maya Lekova**
|
||||
- **Maya Lekova** (10$)
|
||||
|
||||
> Great work with the showdown library! I just used it and it worked exactly the way I expected
|
||||
(given a complex inline HTML inside the Markdown, which renders fine with other viewers).
|
||||
The other libraries I've tried (markdown-it and marked) produced a lot of bogus output. Y
|
||||
our library saved me at least half a day, thanks! Good luck :)
|
||||
|
||||
- **Lin Wang** (10$)
|
||||
|
||||
- **Juan Marcelo Russo** (1$)
|
||||
|
||||
- **Walter Schnell** (10$)
|
||||
|
|
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.8.1",
|
||||
"version": "1.8.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.8.2](https://github.com/showdownjs/showdown/tree/1.8.2)
|
||||
|
||||
### Test Suite: Basic (50 cycles)
|
||||
| test | avgTime | max | min |
|
||||
|:-----|--------:|----:|----:|
|
||||
|Simple "Hello World"|0.361|8.977|0.104|
|
||||
|performance.testfile.md|33.109|56.478|29.179|
|
||||
|
||||
### Test Suite: subParsers (20 cycles)
|
||||
| test | avgTime | max | min |
|
||||
|:-----|--------:|----:|----:|
|
||||
|hashHTMLBlocks|5.488|20.714|2.321|
|
||||
|anchors|0.506|3.158|0.292|
|
||||
|autoLinks|0.141|0.365|0.072|
|
||||
|blockQuotes|2.300|3.642|2.046|
|
||||
|codeBlocks|0.243|0.877|0.189|
|
||||
|codeSpans|0.268|1.176|0.159|
|
||||
|detab|0.095|0.172|0.089|
|
||||
|encodeAmpsAndAngles|0.108|0.230|0.097|
|
||||
|encodeBackslashEscapes|0.078|0.119|0.074|
|
||||
|encodeCode|1.002|1.544|0.851|
|
||||
|escapeSpecialCharsWithinTagAttributes|0.256|0.566|0.164|
|
||||
|githubCodeBlocks|0.253|0.999|0.152|
|
||||
|hashBlock|0.042|0.080|0.037|
|
||||
|hashElement|0.002|0.032|0.000|
|
||||
|hashHTMLSpans|4.444|5.282|3.987|
|
||||
|hashPreCodeTags|0.152|0.265|0.117|
|
||||
|headers|1.465|4.970|1.059|
|
||||
|horizontalRule|0.245|0.562|0.205|
|
||||
|images|0.312|2.615|0.131|
|
||||
|italicsAndBold|0.287|0.427|0.244|
|
||||
|lists|3.261|4.098|2.792|
|
||||
|outdent|0.179|0.377|0.141|
|
||||
|paragraphs|6.661|9.047|5.884|
|
||||
|spanGamut|4.561|6.173|4.009|
|
||||
|strikethrough|0.005|0.097|0.000|
|
||||
|stripLinkDefinitions|0.251|0.402|0.216|
|
||||
|tables|0.006|0.086|0.001|
|
||||
|unescapeSpecialChars|0.013|0.064|0.008|
|
||||
|
||||
|
||||
## [version 1.8.0](https://github.com/showdownjs/showdown/tree/1.8.0)
|
||||
|
||||
### Test Suite: Basic (50 cycles)
|
||||
|
|
Loading…
Reference in New Issue
Block a user