react-code-dataset
/
slate
/packages
/slate-hyperscript
/test
/fixtures
/cursor-element-nested-middle.tsx
| /** @jsx jsx */ | |
| import { jsx } from 'slate-hyperscript' | |
| export const input = ( | |
| <editor> | |
| <element> | |
| <element> | |
| wo | |
| <cursor /> | |
| rd | |
| </element> | |
| </element> | |
| </editor> | |
| ) | |
| export const output = { | |
| children: [ | |
| { | |
| children: [ | |
| { | |
| children: [ | |
| { | |
| text: 'word', | |
| }, | |
| ], | |
| }, | |
| ], | |
| }, | |
| ], | |
| selection: { | |
| anchor: { | |
| path: [0, 0, 0], | |
| offset: 2, | |
| }, | |
| focus: { | |
| path: [0, 0, 0], | |
| offset: 2, | |
| }, | |
| }, | |
| } | |