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 system. It is developed to power our online editing platform [Substance](http://substance.io).

15 lines (13 loc) 315 B
import { Container, CONTAINER } from 'substance' import { BLOCK_NODES } from './TestArticleConstants' export default class TestBody extends Container { define () { return { type: 'body', nodes: CONTAINER({ nodeTypes: BLOCK_NODES, defaultTextType: 'paragraph' }) } } }