bdd410672d
Change-Id: Iaa70ed769c7d693ff5172f4fd3204677e4834a8a
44 lines
672 B
JavaScript
44 lines
672 B
JavaScript
module.exports = {
|
|
'@apostrophecms/video': {},
|
|
'@apostrophecms/html': {},
|
|
'@apostrophecms/rich-text': {
|
|
toolbar: [
|
|
'styles',
|
|
'|',
|
|
'bold',
|
|
'italic',
|
|
'strike',
|
|
'link',
|
|
'|',
|
|
'bulletList',
|
|
'orderedList',
|
|
'|',
|
|
'blockquote',
|
|
'codeBlock',
|
|
'|',
|
|
'horizontalRule',
|
|
'|',
|
|
'undo',
|
|
'redo'
|
|
],
|
|
styles: [
|
|
{
|
|
tag: 'p',
|
|
label: 'Paragraph (P)'
|
|
},
|
|
{
|
|
tag: 'h3',
|
|
label: 'Heading 3 (H3)'
|
|
},
|
|
{
|
|
tag: 'h4',
|
|
label: 'Heading 4 (H4)'
|
|
}
|
|
],
|
|
insert: [
|
|
'table',
|
|
'image'
|
|
]
|
|
}
|
|
};
|