import type { NodeJSON } from 'prosekit/core'
export const sampleContent: NodeJSON = {
type: 'doc',
content: [
{
type: 'list',
attrs: { kind: 'bullet' },
content: [
{ type: 'paragraph', content: [{ type: 'text', text: 'Bullet List' }] },
],
},
{
type: 'list',
attrs: { kind: 'ordered' },
content: [
{
type: 'paragraph',
content: [{ type: 'text', text: 'Ordered List' }],
},
],
},
{
type: 'list',
attrs: { kind: 'task', checked: false },
content: [
{ type: 'paragraph', content: [{ type: 'text', text: 'Task List ' }] },
],
},
{
type: 'list',
attrs: { kind: 'toggle', collapsed: true },
content: [
{ type: 'paragraph', content: [{ type: 'text', text: 'Toggle List' }] },
{
type: 'list',
attrs: {
kind: 'bullet',
},
content: [
{ type: 'paragraph', content: [{ type: 'text', text: 'Hidden' }] },
],
},
],
},
],
}