forked from zicloud/bigscreen_admin
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
456 B
JavaScript
10 lines
456 B
JavaScript
import { Attributor, ClassAttributor, Scope, StyleAttributor } from 'parchment';
|
|
const config = {
|
|
scope: Scope.BLOCK,
|
|
whitelist: ['right', 'center', 'justify']
|
|
};
|
|
const AlignAttribute = new Attributor('align', 'align', config);
|
|
const AlignClass = new ClassAttributor('align', 'ql-align', config);
|
|
const AlignStyle = new StyleAttributor('align', 'text-align', config);
|
|
export { AlignAttribute, AlignClass, AlignStyle };
|
|
//# sourceMappingURL=align.js.map
|