Typo3 8.7.x / CKEditor:如何覆盖下拉列表中标题的标签?

时间:2018-09-04 12:14:33

标签: ckeditor typo3 typo3-8.x

我想覆盖下拉列表中标题的标签。我尝试了以下yaml配置,但不起作用:

editor:
  config:
    format_h2: { name: "test", element: "h1"}

1 个答案:

答案 0 :(得分:1)

我自己找到了一个解决方案,希望它可以帮助其他人: 您可以创建从format_tags删除标准标题,并添加自定义标题,例如headline1; headline2,...

editor:
  config:
    format_tags: 'p;headline1;headline2;headline3'
    format_headline1: { element: 'h1', name: 'Very Large Headline' }
    format_headline2: { element: 'h2', name: 'Large Headline' }
    format_headline3: { element: 'h3', name: 'Normal Headline' }