blob: ed1b0cf0d90d6d53cc90c693fcfc536d956dfbd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export const LINE_BREAK = /\r?\n/;
export const PHRASE_PARENTS = new Set([
'paragraph',
'heading',
'emphasis',
'strong',
'delete',
'link',
'linkReference',
'tableCell'
]);
export const NBSP = '\u00a0';
export const TAB_AS_SPACES = NBSP.repeat(4);
|