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 (15 loc) 261 B
export default function(tx) { var body = tx.get('body') tx.create({ id: 'p1', type: 'paragraph', content: '0123456789' }) body.show('p1') tx.create({ id: 'p2', type: 'paragraph', content: '0123456789' }) body.show('p2') }