docutils-ts
Version:
Port of the Python Docutils library to TypeScript
11 lines (10 loc) • 634 B
TypeScript
export declare const nonWhitespaceBefore = "(?<!\\s)";
export declare const nonWhitespaceEscapeBefore = "(?<![\\s\\x00])";
export declare const nonUnescapedWhitespaceEscapeBefore = "(?<!(?<!\\x00)[\\s\\x00])";
export declare const nonWhitespaceAfter = "(?!\\s)";
export declare const classifierDelimiterRegexp: RegExp;
export declare const simpleTableBorderPat: RegExp;
export declare const gridTableTopPat: RegExp;
export declare const emailPattern = "%(emailc)s+(?:\\.%(emailc)s+)*(?<!\0)@%(emailc)s+(?:\\.%(emailc)s*)*%(uri_end)s";
export declare const nonalphanum7bit = "[!-/:-@[-`{-~]";
export declare const simplename = "\\w+";