{{ apos.singleton(data.page, 'textBlock', 'apostrophe-rich-text', {
toolbar: [ 'Styles', 'Bold', 'Italic' ],
styles: [
{ name: 'Title', element: 'h3' },
{ name: 'Meta', element: 'h5' }
]
}) }}
是否可以将添加富文本更改为其他名称
答案 0 :(得分:1)
在根目录中使用以下内容更新app.js
文件:
var apos = require('apostrophe')({
...
// The modules you want to use.
modules: {
...
'apostrophe-rich-text-widgets':{
label: 'Awesome Text'
},
...
}
})
例如,如果您想要“添加Awesome Text”按钮,那么只需更新label
模块的配置选项的apostrophe-rich-text-widgets
属性,其值为“Awesome Text”即可期望的结果。请注意,label
的值不应该像“Add ..”那样开始,而是撇号将在给定值前加上单词“Add”。
答案 1 :(得分:0)
这件事有效,但唯一的问题是每个文字都有变化,我想指定每个文字
例如:ADD标题,添加段落,......