@readme/markdown 14.11.2 → 14.11.3

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.
@@ -0,0 +1,9 @@
1
+ import { type RepairResult } from './utils';
2
+ /**
3
+ * Escapes stray `<` characters that don't begin a valid tag so the strict mdxjs
4
+ * parse treats them as literal text instead of throwing (`word <`, `a <1>`).
5
+ *
6
+ * Runs against the masked source so `<` inside code spans, legacy `<<var>>`
7
+ * syntax, or already-escaped `\<` are left untouched.
8
+ */
9
+ export declare const escapeStrayLessThan: (html: string) => RepairResult;