/** @jsx jsx */
import { Editor, Transforms } from 'slate';
import { jsx } from '../../../../../support/jsx';
export const input = (
Meeting notes
);
export const expected = (
Meeting notes
);
export function run(editor: Editor) {
Transforms.setNodes(
editor,
{ noteId: 'note2' },
{
match: (node) => Editor.isInline(editor, node),
}
);
}