cherry-markdown 0.5.11 → 0.5.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/cherry-markdown.core.js +1 -1
- package/dist/cherry-markdown.engine.core.js +1 -1
- package/dist/cherry-markdown.esm.js +1 -1
- package/dist/cherry-markdown.js +6 -4
- package/dist/cherry-markdown.js.map +1 -1
- package/dist/cherry-markdown.min.js +1 -1
- package/dist/fonts/ch-icon.eot +0 -0
- package/dist/fonts/ch-icon.ttf +0 -0
- package/dist/fonts/ch-icon.woff +0 -0
- package/dist/fonts/ch-icon.woff2 +0 -0
- package/package.json +2 -1
- package/src/Factory.js +1 -1
- package/src/addons/cherry-code-block-plantuml-plugin.js +2 -2
package/dist/cherry-markdown.js
CHANGED
|
@@ -81766,7 +81766,7 @@
|
|
|
81766
81766
|
return filteredOptions.shortcutKeys;
|
|
81767
81767
|
}
|
|
81768
81768
|
|
|
81769
|
-
return
|
|
81769
|
+
return [];
|
|
81770
81770
|
}
|
|
81771
81771
|
}]);
|
|
81772
81772
|
|
|
@@ -81784,7 +81784,7 @@
|
|
|
81784
81784
|
});
|
|
81785
81785
|
}
|
|
81786
81786
|
|
|
81787
|
-
var VERSION = "0.5.
|
|
81787
|
+
var VERSION = "0.5.13-b961e76e";
|
|
81788
81788
|
var CherryStatic = /*#__PURE__*/function () {
|
|
81789
81789
|
function CherryStatic() {
|
|
81790
81790
|
_classCallCheck(this, CherryStatic);
|
|
@@ -84439,17 +84439,19 @@
|
|
|
84439
84439
|
var _context;
|
|
84440
84440
|
|
|
84441
84441
|
var s = unescape(encodeURIComponent(s1));
|
|
84442
|
-
return concat$2(_context = "".concat(url, "/
|
|
84442
|
+
return concat$2(_context = "".concat(url, "/svg/")).call(_context, encode64(deflate(s, 9)));
|
|
84443
84443
|
}
|
|
84444
84444
|
|
|
84445
84445
|
var PlantUMLCodeEngine = /*#__PURE__*/function () {
|
|
84446
84446
|
function PlantUMLCodeEngine() {
|
|
84447
|
+
var _plantUMLOptions$base;
|
|
84448
|
+
|
|
84447
84449
|
var plantUMLOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
84448
84450
|
|
|
84449
84451
|
_classCallCheck(this, PlantUMLCodeEngine);
|
|
84450
84452
|
|
|
84451
84453
|
var defaultUrl = 'http://www.plantuml.com/plantuml';
|
|
84452
|
-
this.baseUrl = plantUMLOptions.baseUrl ?
|
|
84454
|
+
this.baseUrl = (_plantUMLOptions$base = plantUMLOptions.baseUrl) !== null && _plantUMLOptions$base !== void 0 ? _plantUMLOptions$base : defaultUrl;
|
|
84453
84455
|
}
|
|
84454
84456
|
|
|
84455
84457
|
_createClass(PlantUMLCodeEngine, [{
|