UNPKG

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.

17 lines (12 loc) 228 B
import { Document } from '../../model' export default class ProseArticle extends Document { _initialize() { super._initialize() this.create({ type: 'container', id: 'body', nodes: [] }) } }