Skip to content

Commit dedf130

Browse files
committed
release v1.7.3
1 parent cb2ef8a commit dedf130

8 files changed

+65
-8
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
<a name="1.7.3"></a>
2+
## [1.7.3](https://github.com/showdownjs/showdown/compare/1.7.2...1.7.3) (2017-08-23)
3+
4+
5+
### Bug Fixes
6+
7+
* **github flavor:** add backslashEscapesHTMLTags to GFM flavor ([5284439](https://github.com/showdownjs/showdown/commit/5284439))
8+
* **literalMidWordAsterisks:** fix option no longer treat punctuation as word character ([8f05be7](https://github.com/showdownjs/showdown/commit/8f05be7)), closes [#398](https://github.com/showdownjs/showdown/issues/398)
9+
10+
11+
### Features
12+
13+
* **rawHeaderId:** Remove only spaces, ' and " from generated header ids ([1791cf0](https://github.com/showdownjs/showdown/commit/1791cf0)), closes [#409](https://github.com/showdownjs/showdown/issues/409)
14+
* **rawPrefixHeaderId:** add option to prevent showdown from modifying the prefix ([ff26c08](https://github.com/showdownjs/showdown/commit/ff26c08)), closes [#409](https://github.com/showdownjs/showdown/issues/409)
15+
16+
17+
118
<a name="1.7.2"></a>
219
## [1.7.2](https://github.com/showdownjs/showdown/compare/1.7.1...1.7.2) (2017-08-05)
320

Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = function (grunt) {
1515
concat: {
1616
options: {
1717
sourceMap: true,
18-
banner: ';/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n(function(){\n',
18+
banner: ';/*! <%= pkg.name %> v <%= pkg.version %> - <%= grunt.template.today("dd-mm-yyyy") %> */\n(function(){\n',
1919
footer: '}).call(this);\n'
2020
},
2121
dist: {
@@ -43,7 +43,7 @@ module.exports = function (grunt) {
4343
uglify: {
4444
options: {
4545
sourceMap: true,
46-
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n'
46+
banner: '/*! <%= pkg.name %> v <%= pkg.version %> - <%= grunt.template.today("dd-mm-yyyy") %> */'
4747
},
4848
dist: {
4949
files: {

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-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/showdown.min.js.map

+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.2",
3+
"version": "1.7.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.7.3](https://github.com/showdownjs/showdown/tree/1.7.3)
5+
6+
### Test Suite: Basic (50 cycles)
7+
| test | avgTime | max | min |
8+
|:-----|--------:|----:|----:|
9+
|Simple "Hello World"|0.277|5.743|0.088|
10+
|performance.testfile.md|30.733|54.768|26.972|
11+
12+
### Test Suite: subParsers (20 cycles)
13+
| test | avgTime | max | min |
14+
|:-----|--------:|----:|----:|
15+
|hashHTMLBlocks|4.316|8.271|2.339|
16+
|anchors|0.525|3.812|0.288|
17+
|autoLinks|0.085|0.220|0.063|
18+
|blockQuotes|2.033|3.622|1.745|
19+
|codeBlocks|0.251|1.060|0.178|
20+
|codeSpans|0.246|0.749|0.157|
21+
|detab|0.142|0.752|0.087|
22+
|encodeAmpsAndAngles|0.100|0.129|0.095|
23+
|encodeBackslashEscapes|0.079|0.125|0.070|
24+
|encodeCode|0.977|1.774|0.852|
25+
|escapeSpecialCharsWithinTagAttributes|0.271|0.441|0.244|
26+
|githubCodeBlocks|0.235|0.985|0.139|
27+
|hashBlock|0.068|0.550|0.036|
28+
|hashElement|0.002|0.030|0.000|
29+
|hashHTMLSpans|4.197|4.564|4.006|
30+
|hashPreCodeTags|0.139|0.543|0.106|
31+
|headers|1.148|4.214|0.880|
32+
|horizontalRule|0.214|0.273|0.199|
33+
|images|0.310|3.095|0.120|
34+
|italicsAndBold|0.279|0.378|0.235|
35+
|lists|3.843|8.278|2.630|
36+
|outdent|0.193|0.386|0.144|
37+
|paragraphs|5.541|8.153|4.836|
38+
|spanGamut|4.638|5.775|4.142|
39+
|strikethrough|0.003|0.052|0.000|
40+
|stripLinkDefinitions|0.167|0.275|0.142|
41+
|tables|0.002|0.036|0.000|
42+
|unescapeSpecialChars|0.009|0.032|0.008|
43+
44+
445
## [version 1.7.2](https://github.com/showdownjs/showdown/tree/1.7.2)
546

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

0 commit comments

Comments
 (0)