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).

17 lines (15 loc) 266 B
export default function (tx) { var body = tx.get('body') tx.create({ id: 'p1', type: 'paragraph', content: '0123456789' }) body.append('p1') tx.create({ id: 'p2', type: 'paragraph', content: '0123456789' }) body.append('p2') }