Skip to content

Commit

Permalink
chore(release): 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
humyfred committed May 26, 2022
1 parent b47e294 commit d0a5ca3
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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.7.3](https://github.com/Tencent/cherry-markdown/compare/v0.7.2...v0.7.3) (2022-05-26)

### [0.7.1](https://github.com/Tencent/cherry-markdown/compare/v0.7.0...v0.7.1) (2022-05-10)


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.

18 changes: 15 additions & 3 deletions dist/cherry-markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -84969,6 +84969,10 @@
var BaseClass = type === HOOKS_TYPE_LIST.PAR ? ParagraphBase : SyntaxBase;
var optionsWhiteList = ['beforeMakeHtml', 'makeHtml', 'afterMakeHtml', 'rule', 'test'];
var filteredOptions = filterOptions(options, optionsWhiteList, 'function');
var paragraphConfig = {
needCache: options.needCache,
defaultCache: options.defaultCache
};
return _class = /*#__PURE__*/function (_BaseClass) {
_inherits(CustomSyntax, _BaseClass);

Expand All @@ -84981,9 +84985,17 @@

_classCallCheck(this, CustomSyntax);

_this = _super.call(this);
if (type === HOOKS_TYPE_LIST.PAR) {
_this = _super.call(this, {
needCache: !!paragraphConfig.needCache,
defaultCache: paragraphConfig.defaultCache
});
} else {
_this = _super.call(this);
}

_this.config = editorConfig.config;
return _this;
return _possibleConstructorReturn(_this);
}

_createClass(CustomSyntax, [{
Expand Down Expand Up @@ -85133,7 +85145,7 @@
});
}

var VERSION = "0.7.2-dff283c4";
var VERSION = "0.7.3-b47e2944";
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.7.2",
"version": "0.7.3",
"description": "a new markdown editor",
"repository": {
"type": "git",
Expand Down

0 comments on commit d0a5ca3

Please sign in to comment.