@readme/markdown 14.1.3 → 14.2.0
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/components/Callout/style.scss +1 -1
- package/dist/lib/compile.d.ts +2 -1
- package/dist/lib/micromark/jsx-table/syntax.d.ts +3 -3
- package/dist/main.css +1 -1
- package/dist/main.css.map +1 -1
- package/dist/main.js +104 -83
- package/dist/main.node.js +104 -83
- package/dist/main.node.js.map +1 -1
- package/dist/processor/transform/mdxish/magic-blocks/patterns.d.ts +2 -2
- package/package.json +1 -1
|
@@ -6,5 +6,5 @@ export declare const HTML_ELEMENT_BLOCK_RE: RegExp;
|
|
|
6
6
|
export declare const NEWLINE_WITH_WHITESPACE_RE: RegExp;
|
|
7
7
|
/** Matches a closing block-level tag followed by non-tag text or by a newline then non-blank content. */
|
|
8
8
|
export declare const CLOSE_BLOCK_TAG_BOUNDARY_RE: RegExp;
|
|
9
|
-
/**
|
|
10
|
-
export declare const
|
|
9
|
+
/** Strips HTML open/close tags. Used to detect non-tag inner text content. */
|
|
10
|
+
export declare const HTML_TAG_STRIP_RE: RegExp;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@readme/markdown",
|
|
3
3
|
"description": "ReadMe's React-based Markdown parser",
|
|
4
4
|
"author": "Rafe Goldberg <rafe@readme.io>",
|
|
5
|
-
"version": "14.
|
|
5
|
+
"version": "14.2.0",
|
|
6
6
|
"main": "dist/main.node.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"browser": "dist/main.js",
|