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/html.d.cts
CHANGED
|
@@ -174,10 +174,12 @@ type RequireAtLeastOne<
|
|
|
174
174
|
type: typeof RuleType2.htmlBlock;
|
|
175
175
|
attrs?: Record<string, any>;
|
|
176
176
|
children?: ASTNode[] | undefined;
|
|
177
|
-
|
|
177
|
+
verbatim?: boolean;
|
|
178
178
|
rawAttrs?: string;
|
|
179
|
-
|
|
179
|
+
rawText?: string | undefined;
|
|
180
|
+
/** @deprecated Use `rawText` instead. This property will be removed in a future major version. */
|
|
180
181
|
text?: string | undefined;
|
|
182
|
+
tag: string;
|
|
181
183
|
}
|
|
182
184
|
export interface HTMLSelfClosingNode {
|
|
183
185
|
type: typeof RuleType2.htmlSelfClosing;
|
package/dist/html.d.ts
CHANGED
|
@@ -174,10 +174,12 @@ type RequireAtLeastOne<
|
|
|
174
174
|
type: typeof RuleType2.htmlBlock;
|
|
175
175
|
attrs?: Record<string, any>;
|
|
176
176
|
children?: ASTNode[] | undefined;
|
|
177
|
-
|
|
177
|
+
verbatim?: boolean;
|
|
178
178
|
rawAttrs?: string;
|
|
179
|
-
|
|
179
|
+
rawText?: string | undefined;
|
|
180
|
+
/** @deprecated Use `rawText` instead. This property will be removed in a future major version. */
|
|
180
181
|
text?: string | undefined;
|
|
182
|
+
tag: string;
|
|
181
183
|
}
|
|
182
184
|
export interface HTMLSelfClosingNode {
|
|
183
185
|
type: typeof RuleType2.htmlSelfClosing;
|