schlechtenburg/packages/rich-text/lib/special-characters.ts

11 lines
277 B
TypeScript
Raw Normal View History

2024-10-08 07:15:26 +00:00
/**
* Object replacement character, used as a placeholder for objects.
*/
export const OBJECT_REPLACEMENT_CHARACTER = '\ufffc';
/**
* Zero width non-breaking space, used as padding in the editable DOM tree when
* it is empty otherwise.
*/
export const ZWNBSP = '\ufeff';