Skip to content

Commit

Permalink
chore(release): 0.8.14
Browse files Browse the repository at this point in the history
Co-authored-by: sunsonliu <[email protected]>
Co-authored-by: ivorwei <[email protected]>
Co-authored-by: barryhu <[email protected]>
Co-authored-by: kiritocui <[email protected]>
  • Loading branch information
5 people committed Feb 21, 2023
1 parent 515b06c commit ea3da75
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.8.14](https://github.com/Tencent/cherry-markdown/compare/v0.8.13...v0.8.14) (2023-02-21)


### Bug Fixes

* 临时解决超链接和斜体语法冲突的问题,最终解决方案应该是AutoLink语法实现排他 ([9d23c56](https://github.com/Tencent/cherry-markdown/commit/9d23c565d682535b14d9bfbae3cefa35012b0b86))

### [0.8.13](https://github.com/Tencent/cherry-markdown/compare/v0.8.12...v0.8.13) (2023-02-17)


Expand Down
2 changes: 1 addition & 1 deletion dist/cherry-markdown.core.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.esm.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/cherry-markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -35282,7 +35282,7 @@
}

var processedURL = this.urlProcessor(url, 'autolink');
return concat$5(_context16 = concat$5(_context17 = concat$5(_context18 = "<a target=\"".concat(this.openNewPage ? '_blank' : '_self', "\" rel=\"nofollow\" title=\"")).call(_context18, escapeHTMLSpecialCharOnce(url), "\" href=\"")).call(_context17, encodeURIOnce(processedURL), "\">")).call(_context16, escapeHTMLSpecialCharOnce(linkText), "</a>");
return concat$5(_context16 = concat$5(_context17 = concat$5(_context18 = "<a target=\"".concat(this.openNewPage ? '\\_blank' : '\\_self', "\" rel=\"nofollow\" title=\"")).call(_context18, escapeHTMLSpecialCharOnce(url).replace(/_/g, '\\_'), "\" href=\"")).call(_context17, encodeURIOnce(processedURL).replace(/_/g, '\\_'), "\">")).call(_context16, escapeHTMLSpecialCharOnce(linkText).replace(/_/g, '\\_'), "</a>");
}
}]);

Expand Down Expand Up @@ -82727,7 +82727,7 @@
});
}

var VERSION = "0.8.12-6a6e21d0";
var VERSION = "0.8.13-515b06c0";
var CherryStatic = /*#__PURE__*/function () {
function CherryStatic() {
_classCallCheck(this, CherryStatic);
Expand Down
2 changes: 1 addition & 1 deletion dist/cherry-markdown.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.min.js

Large diffs are not rendered by default.

Binary file modified dist/fonts/ch-icon.eot
Binary file not shown.
Binary file modified dist/fonts/ch-icon.ttf
Binary file not shown.
Binary file modified dist/fonts/ch-icon.woff
Binary file not shown.
Binary file modified dist/fonts/ch-icon.woff2
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cherry-markdown",
"license": "Apache-2.0",
"version": "0.8.13",
"version": "0.8.14",
"description": "a new markdown editor",
"repository": {
"type": "git",
Expand Down

0 comments on commit ea3da75

Please sign in to comment.