ep_headings2
Version:
Adds heading support to Etherpad Lite. Includes improved suppot for export, i18n etc.
12 lines (7 loc) • 369 B
JavaScript
;
const {lineAttribute} = require('ep_plugin_helpers/attributes');
const tags = ['h1', 'h2', 'h3', 'h4', 'code'];
const headings = lineAttribute({attr: 'heading', tags});
exports.collectContentPre = headings.collectContentPre;
exports.collectContentPost = headings.collectContentPost;
exports.ccRegisterBlockElements = headings.ccRegisterBlockElements;