我想修改&#34;格式&#34; Mura中CKEditor的下拉,因为我不喜欢Mura重命名标题的方式。例如,<h2>
元素重命名为&#34;标题&#34;和<h3
&gt;元素重命名为&#34;标题2&#34;。我明白为什么他们这样做,因为<h1>
是为页面标题保留的,但它对内容编辑和可访问性感到困惑。
我想删除此重命名功能。
答案 0 :(得分:0)
我相信使用的命名(如“标题1”)是CKEditor本身的一部分(reference)。
至于哪些HTML标签实际用于这些格式,Mura允许您自定义。查看主题文件夹下的contentRenderer.cfc
文件。在该文件中,他们设置用于自定义编辑器和页面布局的变量。具体来说,这部分(reference):
// The following settings allow developers to change logical page structure.
// For example, some developers prefer H1 tags for their page titles,
// some prefer H2 tags - you can adjust this here:
this.headline='h2';
this.subHead1='h3';
this.subHead2='h4';
this.subHead3='h5';
this.subHead4='h6';
我不是100%肯定,但我认为这些设置也在Mura的CKEditor中使用。