import type { NodeJSON } from 'prosekit/core'
export const sampleContent: NodeJSON = {
type: 'doc',
content: [
{
type: 'paragraph',
content: [
{
type: 'text',
text: 'Baa, baa, black sheep,',
},
],
},
{
type: 'paragraph',
content: [
{
type: 'text',
text: 'Have you any wool?',
},
],
},
{
type: 'paragraph',
content: [
{
type: 'text',
text: 'Yes, sir, yes, sir,',
},
],
},
{
type: 'paragraph',
content: [
{
type: 'text',
text: 'Three bags full;',
},
],
},
{
type: 'paragraph',
content: [
{
type: 'text',
text: 'One for the master,',
},
],
},
{
type: 'paragraph',
content: [
{
type: 'text',
text: 'And one for the dame,',
},
],
},
{
type: 'paragraph',
content: [
{
type: 'text',
text: 'And one for the little boy',
},
],
},
{
type: 'paragraph',
content: [
{
type: 'text',
text: 'Who lives down the lane.',
},
],
},
],
}