substance
Version:
Substance is a JavaScript library for web-based content editing. It provides building blocks for realizing custom text editors and web-based publishing systems.
39 lines (37 loc) • 632 B
JavaScript
/*
Creates a document with the following content
```
body:
p1: '0123456789'
p2: '0123456789'
p3: '0123456789'
p4: '0123456789'
```
*/
export default function simple(doc) {
let body = doc.get('body')
doc.create({
type: 'paragraph',
id: 'p1',
content: '0123456789'
})
body.show('p1')
doc.create({
type: 'paragraph',
id: 'p2',
content: '0123456789'
})
body.show('p2')
doc.create({
type: 'paragraph',
id: 'p3',
content: '0123456789'
})
body.show('p3')
doc.create({
type: 'paragraph',
id: 'p4',
content: '0123456789'
})
body.show('p4')
}