在RTE之外包装特定标签

时间:2014-07-17 11:14:28

标签: typo3 rte tsconfig

我使用TYPO3 4.7和rtehtmlarea 4.7.7

我正在设计一份时事通讯。 <h2>是内容元素的标题,并且在RTE中添加了<h3>

有没有办法通过RTE tsconfig(或其他东西)用<h3>标记包装这些<font>

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以在TypoScript模板(不是TSConfig)中执行此操作:

lib.parseFunc_RTE {
  externalBlocks := addToList(h3)
  externalBlocks.h3 {
    stdWrap.wrap = <font>|</font>
    callRecursive = 1
  }
}