我正在尝试在Apostrophe中扩展Rich Text Widgets样式,但是它不起作用。
在home.html
{ apos.area(data.page, 'body', {
widgets: {
'apostrophe-rich-text': {
toolbar: [ 'Styles', 'Bold', 'Italic', 'Link',
'Unlink'],
styles: [
{ name: 'Heading', element: 'h2'},
{ name: 'Subheading', element: 'h3'},
{ name: 'Paragraph', element: 'p'}
]
}
}
}) }}
在lib / modules / apostrophe-rich-text-widgets / index.js中
module.exports = {
// The standard list copied from the module, plus sup and sub
sanitizeHtml: {
allowedTags: [ 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'blockquote', 'p', 'a',
'ul', 'ol', 'li', 'b', 'i', 'strong', 'em', 'strike',
'code', 'hr', 'br', 'div', 'table', 'thead', 'caption',
'tbody', 'tr', 'th', 'td', 'pre', 'sup', 'sub'
],
allowedAttributes: {
a: [ 'href', 'name', 'target' ],
// We don't currently allow img itself by default, but this
// would make sense if we did
img: [ 'src' ]
},
// Lots of these won't come up by default because we don't allow them
selfClosing: [ 'img', 'br', 'hr', 'area', 'base', 'basefont',
'input', 'link', 'meta' ],
// URL schemes we permit
allowedSchemes: [ 'http', 'https', 'ftp', 'mailto' ],
allowedSchemesByTag: {}
}
};
HTML标记h3和p可以正常工作,但是h2可以像p一样工作。那里有我不正确放置的东西吗?
谢谢!
答案 0 :(得分:1)
我修复了该问题,并为h2标签添加了样式。我注意到h3在 site.less
中有自己的风格h3 {
font-size: 24px;
margin-bottom: 12px;
}
h4 {
font-size: 20px;
margin-bottom: 10px;
}
strong { font-weight: bold; }
em { font-style: italic; }
所以我在h2标签中添加了我想要的样式,然后它就起作用了。