markdown-to-jsx 9.4.0 → 9.4.2
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/README.md +40 -2
- package/dist/html.cjs +92 -92
- package/dist/html.d.cts +4 -2
- package/dist/html.d.ts +4 -2
- package/dist/html.js +92 -92
- package/dist/html.js.map +5 -5
- package/dist/index.cjs +99 -99
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +99 -99
- package/dist/index.js.map +5 -5
- package/dist/markdown.cjs +117 -117
- package/dist/markdown.d.cts +363 -1
- package/dist/markdown.d.ts +363 -1
- package/dist/markdown.js +117 -117
- package/dist/markdown.js.map +5 -5
- package/dist/native.cjs +102 -102
- package/dist/native.d.cts +4 -2
- package/dist/native.d.ts +4 -2
- package/dist/native.js +102 -102
- package/dist/native.js.map +5 -5
- package/dist/react.cjs +99 -99
- package/dist/react.d.cts +4 -2
- package/dist/react.d.ts +4 -2
- package/dist/react.js +99 -99
- package/dist/react.js.map +5 -5
- package/dist/solid.cjs +100 -100
- package/dist/solid.d.cts +4 -2
- package/dist/solid.d.ts +4 -2
- package/dist/solid.js +100 -100
- package/dist/solid.js.map +5 -5
- package/dist/vue.cjs +99 -99
- package/dist/vue.d.cts +5 -3
- package/dist/vue.d.ts +5 -3
- package/dist/vue.js +98 -98
- package/dist/vue.js.map +5 -5
- package/package.json +1 -1
package/dist/native.d.cts
CHANGED
|
@@ -176,10 +176,12 @@ type RequireAtLeastOne<
|
|
|
176
176
|
type: typeof RuleType2.htmlBlock;
|
|
177
177
|
attrs?: Record<string, any>;
|
|
178
178
|
children?: ASTNode[] | undefined;
|
|
179
|
-
|
|
179
|
+
verbatim?: boolean;
|
|
180
180
|
rawAttrs?: string;
|
|
181
|
-
|
|
181
|
+
rawText?: string | undefined;
|
|
182
|
+
/** @deprecated Use `rawText` instead. This property will be removed in a future major version. */
|
|
182
183
|
text?: string | undefined;
|
|
184
|
+
tag: string;
|
|
183
185
|
}
|
|
184
186
|
export interface HTMLSelfClosingNode {
|
|
185
187
|
type: typeof RuleType2.htmlSelfClosing;
|
package/dist/native.d.ts
CHANGED
|
@@ -176,10 +176,12 @@ type RequireAtLeastOne<
|
|
|
176
176
|
type: typeof RuleType2.htmlBlock;
|
|
177
177
|
attrs?: Record<string, any>;
|
|
178
178
|
children?: ASTNode[] | undefined;
|
|
179
|
-
|
|
179
|
+
verbatim?: boolean;
|
|
180
180
|
rawAttrs?: string;
|
|
181
|
-
|
|
181
|
+
rawText?: string | undefined;
|
|
182
|
+
/** @deprecated Use `rawText` instead. This property will be removed in a future major version. */
|
|
182
183
|
text?: string | undefined;
|
|
184
|
+
tag: string;
|
|
183
185
|
}
|
|
184
186
|
export interface HTMLSelfClosingNode {
|
|
185
187
|
type: typeof RuleType2.htmlSelfClosing;
|