gpt4 book ai didi

drupal - 如何在CKEditor中添加自定义段落格式

转载 作者:行者123 更新时间:2023-12-04 10:08:14 24 4
gpt4 key购买 nike

在我的项目中,我需要从下拉列表中删除“Address”和“Formatted”等段落格式,并添加一个名为“Links”的新自定义格式,该格式应为Arial,14px,粗体,红色。是否可以在CKEditor中添加自定义段落格式?

最佳答案

使用CKEDITOR.config.formatTags指定一些新的格式:

CKEDITOR.replace( 'editor1', {
format_tags: 'p;h2;h3;pre;links', // entries is displayed in "Paragraph format"
format_links: {
name: 'Links',
element: 'span',
styles: {
color: 'red',
'font-family': 'arial',
'font-weight': 'bold'
}
}
} );

要了解有关样式的更多信息,请参见 CKEDITOR.styleSet的工作原理。还要注意,从CKEditor 4.1开始,从“段落格式”中删除样式会对 Advanced Content Filter产生影响。

关于drupal - 如何在CKEditor中添加自定义段落格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17230809/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com