mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-03-08 23:09:47 +01:00
18 lines
222 B
JavaScript
18 lines
222 B
JavaScript
|
/** @jsx h */
|
||
|
|
||
|
import h from '../../../helpers/h'
|
||
|
|
||
|
export const input = (
|
||
|
<state>
|
||
|
<document>
|
||
|
<paragraph>
|
||
|
on<b>e</b>
|
||
|
</paragraph>
|
||
|
</document>
|
||
|
</state>
|
||
|
)
|
||
|
|
||
|
export const output = `
|
||
|
one
|
||
|
`.trim()
|