@mintlify/cli 4.0.1367 → 4.0.1369
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/bin/vendor/converter.js +2 -1
- package/package.json +3 -3
package/bin/vendor/converter.js
CHANGED
|
@@ -2067,7 +2067,7 @@ function buildMarkdownTableCellContent(children, ctx, transformNode2) {
|
|
|
2067
2067
|
flushInlineChildren();
|
|
2068
2068
|
return cellContent;
|
|
2069
2069
|
}
|
|
2070
|
-
const isInlineOnly = children.every((child) => child.type === "text" || child.type === "emphasis" || child.type === "strong" || child.type === "link" || child.type === "inlineCode" || child.type === "delete" || child.type === "image" || child.type === "mdxJsxTextElement");
|
|
2070
|
+
const isInlineOnly = children.every((child) => child.type === "text" || child.type === "emphasis" || child.type === "strong" || child.type === "link" || child.type === "inlineCode" || child.type === "delete" || child.type === "image" || child.type === "break" || child.type === "inlineMath" || child.type === "footnoteReference" || child.type === "mdxTextExpression" || child.type === "mdxJsxTextElement");
|
|
2071
2071
|
if (isInlineOnly) {
|
|
2072
2072
|
const paragraph = buildParagraphFromTableInlineChildren(children, ctx, transformNode2);
|
|
2073
2073
|
return paragraph ? [paragraph] : [];
|
|
@@ -2315,6 +2315,7 @@ function transformNode(node, ctx) {
|
|
|
2315
2315
|
attrs: { mdxJsxNode: node, __isHidden: true }
|
|
2316
2316
|
};
|
|
2317
2317
|
case "mdxTextExpression":
|
|
2318
|
+
case "footnoteReference":
|
|
2318
2319
|
return {
|
|
2319
2320
|
type: BLOCK_TYPES.inlineUnknownTag,
|
|
2320
2321
|
attrs: { mdxJsxNode: node }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1369",
|
|
4
4
|
"description": "The Mintlify CLI",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"keytar": "7.9.0"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@mintlify/editor": "0.0.
|
|
84
|
+
"@mintlify/editor": "0.0.272",
|
|
85
85
|
"@mintlify/ts-config": "2.0.2",
|
|
86
86
|
"@tsconfig/recommended": "1.0.2",
|
|
87
87
|
"@types/adm-zip": "0.5.7",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"vitest": "2.1.9",
|
|
102
102
|
"vitest-mock-process": "1.0.4"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "7c3a10a223ba32acba9041e69e62db540b59e0bc"
|
|
105
105
|
}
|