/** @jsx jsx */
import { Editor } from 'slate';
import { jsx } from '../../../../../support/jsx';
export const input = (
Hel
l
o
{' '}
w
orld!
);
export const expected = (
Hel
lo w
orld!
);
export function run(editor: Editor) {
editor.addMark('bold', true);
}