@readme/markdown 9.7.0 → 9.8.0
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/dist/10.node.js +2 -2
- package/dist/354.node.js +1 -1
- package/dist/enums.d.ts +1 -0
- package/dist/main.js +9 -2
- package/dist/main.node.js +9 -2
- package/dist/main.node.js.map +1 -1
- package/dist/processor/compile/plain.d.ts +3 -0
- package/package.json +1 -1
package/dist/10.node.js
CHANGED
|
@@ -918,7 +918,7 @@ class BaseRegExpVisitor {
|
|
|
918
918
|
|
|
919
919
|
/***/ }),
|
|
920
920
|
|
|
921
|
-
/***/
|
|
921
|
+
/***/ 4909:
|
|
922
922
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
923
923
|
|
|
924
924
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
@@ -1890,7 +1890,7 @@ function createPacketServices(context = langium__WEBPACK_IMPORTED_MODULE_1__/* .
|
|
|
1890
1890
|
/* harmony export */ qg: () => (/* binding */ parse)
|
|
1891
1891
|
/* harmony export */ });
|
|
1892
1892
|
/* unused harmony export MermaidParseError */
|
|
1893
|
-
/* harmony import */ var _chunks_mermaid_parser_core_chunk_2NYFTIL2_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
1893
|
+
/* harmony import */ var _chunks_mermaid_parser_core_chunk_2NYFTIL2_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4909);
|
|
1894
1894
|
/* harmony import */ var _chunks_mermaid_parser_core_chunk_EXZZNE6F_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5996);
|
|
1895
1895
|
/* harmony import */ var _chunks_mermaid_parser_core_chunk_V4Q32G6S_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9602);
|
|
1896
1896
|
/* harmony import */ var _chunks_mermaid_parser_core_chunk_ROXG7S4E_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(2409);
|
package/dist/354.node.js
CHANGED
|
@@ -9,7 +9,7 @@ exports.modules = {
|
|
|
9
9
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
10
10
|
/* harmony export */ createGitGraphServices: () => (/* reexport safe */ _chunk_2NYFTIL2_mjs__WEBPACK_IMPORTED_MODULE_0__.b)
|
|
11
11
|
/* harmony export */ });
|
|
12
|
-
/* harmony import */ var _chunk_2NYFTIL2_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
12
|
+
/* harmony import */ var _chunk_2NYFTIL2_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4909);
|
|
13
13
|
/* harmony import */ var _chunk_7PKI6E2E_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(2156);
|
|
14
14
|
|
|
15
15
|
|
package/dist/enums.d.ts
CHANGED
package/dist/main.js
CHANGED
|
@@ -40912,6 +40912,7 @@ var NodeTypes;
|
|
|
40912
40912
|
NodeTypes["htmlBlock"] = "html-block";
|
|
40913
40913
|
NodeTypes["i"] = "i";
|
|
40914
40914
|
NodeTypes["imageBlock"] = "image-block";
|
|
40915
|
+
NodeTypes["plain"] = "plain";
|
|
40915
40916
|
NodeTypes["reusableContent"] = "reusable-content";
|
|
40916
40917
|
NodeTypes["tableau"] = "tableau";
|
|
40917
40918
|
NodeTypes["tutorialTile"] = "tutorial-tile";
|
|
@@ -89938,6 +89939,10 @@ ${reformatHTML(html)}
|
|
|
89938
89939
|
};
|
|
89939
89940
|
/* harmony default export */ const html_block = (htmlBlock);
|
|
89940
89941
|
|
|
89942
|
+
;// ./processor/compile/plain.ts
|
|
89943
|
+
const plain = (node) => node.value;
|
|
89944
|
+
/* harmony default export */ const compile_plain = (plain);
|
|
89945
|
+
|
|
89941
89946
|
;// ./processor/compile/index.ts
|
|
89942
89947
|
|
|
89943
89948
|
|
|
@@ -89946,6 +89951,7 @@ ${reformatHTML(html)}
|
|
|
89946
89951
|
|
|
89947
89952
|
|
|
89948
89953
|
|
|
89954
|
+
|
|
89949
89955
|
function compilers() {
|
|
89950
89956
|
const data = this.data();
|
|
89951
89957
|
const toMarkdownExtensions = data.toMarkdownExtensions || (data.toMarkdownExtensions = []);
|
|
@@ -89962,6 +89968,7 @@ function compilers() {
|
|
|
89962
89968
|
figure: compile_compatibility,
|
|
89963
89969
|
html: compile_compatibility,
|
|
89964
89970
|
i: compile_compatibility,
|
|
89971
|
+
plain: compile_plain,
|
|
89965
89972
|
yaml: compile_compatibility,
|
|
89966
89973
|
};
|
|
89967
89974
|
toMarkdownExtensions.push({ extensions: [{ handlers }] });
|
|
@@ -90607,10 +90614,10 @@ function plain_all(node, opts) {
|
|
|
90607
90614
|
}
|
|
90608
90615
|
return result.join(' ').replaceAll(/\s+/g, ' ').trim();
|
|
90609
90616
|
}
|
|
90610
|
-
const
|
|
90617
|
+
const plain_plain = (node, opts = {}) => {
|
|
90611
90618
|
return 'children' in node ? plain_all(node, opts) || plain_one(node, opts) : plain_one(node, opts);
|
|
90612
90619
|
};
|
|
90613
|
-
/* harmony default export */ const lib_plain = (
|
|
90620
|
+
/* harmony default export */ const lib_plain = (plain_plain);
|
|
90614
90621
|
|
|
90615
90622
|
;// ./node_modules/@mdx-js/mdx/lib/run.js
|
|
90616
90623
|
/**
|
package/dist/main.node.js
CHANGED
|
@@ -57822,6 +57822,7 @@ var NodeTypes;
|
|
|
57822
57822
|
NodeTypes["htmlBlock"] = "html-block";
|
|
57823
57823
|
NodeTypes["i"] = "i";
|
|
57824
57824
|
NodeTypes["imageBlock"] = "image-block";
|
|
57825
|
+
NodeTypes["plain"] = "plain";
|
|
57825
57826
|
NodeTypes["reusableContent"] = "reusable-content";
|
|
57826
57827
|
NodeTypes["tableau"] = "tableau";
|
|
57827
57828
|
NodeTypes["tutorialTile"] = "tutorial-tile";
|
|
@@ -106848,6 +106849,10 @@ ${reformatHTML(html)}
|
|
|
106848
106849
|
};
|
|
106849
106850
|
/* harmony default export */ const html_block = (htmlBlock);
|
|
106850
106851
|
|
|
106852
|
+
;// ./processor/compile/plain.ts
|
|
106853
|
+
const plain = (node) => node.value;
|
|
106854
|
+
/* harmony default export */ const compile_plain = (plain);
|
|
106855
|
+
|
|
106851
106856
|
;// ./processor/compile/index.ts
|
|
106852
106857
|
|
|
106853
106858
|
|
|
@@ -106856,6 +106861,7 @@ ${reformatHTML(html)}
|
|
|
106856
106861
|
|
|
106857
106862
|
|
|
106858
106863
|
|
|
106864
|
+
|
|
106859
106865
|
function compilers() {
|
|
106860
106866
|
const data = this.data();
|
|
106861
106867
|
const toMarkdownExtensions = data.toMarkdownExtensions || (data.toMarkdownExtensions = []);
|
|
@@ -106872,6 +106878,7 @@ function compilers() {
|
|
|
106872
106878
|
figure: compile_compatibility,
|
|
106873
106879
|
html: compile_compatibility,
|
|
106874
106880
|
i: compile_compatibility,
|
|
106881
|
+
plain: compile_plain,
|
|
106875
106882
|
yaml: compile_compatibility,
|
|
106876
106883
|
};
|
|
106877
106884
|
toMarkdownExtensions.push({ extensions: [{ handlers }] });
|
|
@@ -107517,10 +107524,10 @@ function plain_all(node, opts) {
|
|
|
107517
107524
|
}
|
|
107518
107525
|
return result.join(' ').replaceAll(/\s+/g, ' ').trim();
|
|
107519
107526
|
}
|
|
107520
|
-
const
|
|
107527
|
+
const plain_plain = (node, opts = {}) => {
|
|
107521
107528
|
return 'children' in node ? plain_all(node, opts) || plain_one(node, opts) : plain_one(node, opts);
|
|
107522
107529
|
};
|
|
107523
|
-
/* harmony default export */ const lib_plain = (
|
|
107530
|
+
/* harmony default export */ const lib_plain = (plain_plain);
|
|
107524
107531
|
|
|
107525
107532
|
;// ./node_modules/@mdx-js/mdx/lib/run.js
|
|
107526
107533
|
/**
|