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