Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 253 Bytes

insert-slate-functions.md

File metadata and controls

12 lines (11 loc) · 253 Bytes
const breakParagraph = () => {
  Editor.insertBreak(editor);
};
const insertTextInaudible = () => {
  Transforms.insertText(editor, '[INAUDIBLE]');
};

const handleInsertMusicNote = () => {
  Transforms.insertText(editor, '♫'); // or ♪
};