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/dist/solid.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
- noInnerParse?: Boolean;
178
+ verbatim?: boolean;
179
179
  rawAttrs?: string;
180
- tag: string;
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/solid.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
- noInnerParse?: Boolean;
178
+ verbatim?: boolean;
179
179
  rawAttrs?: string;
180
- tag: string;
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;