Replace plain textarea with shared tiptap editor and sanitized html rendering. Adds interactive checklists on read surfaces and mobile overflow fixes.
7 lines
339 B
TypeScript
7 lines
339 B
TypeScript
export { RichTextContent } from "./rich-text-content";
|
|
export { RichTextEditor } from "./rich-text-editor";
|
|
export { richTextToPlainText } from "./body-text";
|
|
export { normalizeNoteBody } from "./normalize-body";
|
|
export { sanitizeRichTextHtml } from "./sanitize";
|
|
export { countTaskItems, toggleTaskItemInHtml } from "./toggle-checklist";
|