撇号CMS,如何将富文本样式拼凑成一块

时间:2017-12-17 22:06:17

标签: css apostrophe apostrophe-cms

我已按照您的指南关注人物:http://apostrophecms.org/docs/tutorials/getting-started/reusable-content-with-pieces.html

这是传记定义:

{
    name: 'body',
    label: 'Biography',
    type: 'area',
    options: {
        widgets: {
            'apostrophe-rich-text': {
                controls: ['Bold', 'Italic', 'Link', 'Unlink']
            },
            'apostrophe-images': { }
        }
    }
}
因此,我认为我可以设计传记。但是,无论是在模态对话框中,还是在人物页面中,我都看不到用于设置文本样式的工具栏。

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

指南有拼写错误.. controls属性应为toolbar

{
    name: 'body',
    label: 'Biography',
    type: 'area',
    options: {
        widgets: {
            'apostrophe-rich-text': {
                toolbar: ['Bold', 'Italic', 'Link', 'Unlink']
            },
            'apostrophe-images': { }
        }
    }
}

我会修复文档,谢谢!