撇号 CMS,如何在一块中设置富文本样式

Apostrophe CMS, how to style rich text in a piece

我已经按照你的指南进行了关于人的文章: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': { }
        }
    }
}

所以我想我可以写传记。但是,无论是在模态对话框中还是在人员页面中,我都没有看到用于设置文本样式的工具栏。

感谢您的帮助!

指南有错字.. controls 属性 应该是 toolbar

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

我会修复文档,谢谢!