2026-02-12 11:22:27 +01:00
|
|
|
export const NEWLINE = '\n';
|
2026-06-12 15:53:26 +02:00
|
|
|
export const TAB = '\t';
|
2026-02-12 11:22:27 +01:00
|
|
|
export const DEFAULT_LANGUAGE = 'text';
|
|
|
|
|
export const LANG_PATTERN = /^(\w*)\n?/;
|
|
|
|
|
export const AMPERSAND_REGEX = /&/g;
|
|
|
|
|
export const LT_REGEX = /</g;
|
|
|
|
|
export const GT_REGEX = />/g;
|
|
|
|
|
export const FENCE_PATTERN = /^```|\n```/g;
|