Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 TYPO3 4.7 和 rtehtmlarea 4.7.7
我目前正在设计时事通讯。 <h2>是内容元素的标题,并<h3>添加到 RTE 中。
<h2>
<h3>
有没有办法通过 RTE tsconfig (或其他东西)<h3>用标签包装这些?<font>
<font>
您可以在 TypoScript 模板(不是 TSConfig)中执行此操作:
lib.parseFunc_RTE { externalBlocks := addToList(h3) externalBlocks.h3 { stdWrap.wrap = <font>|</font> callRecursive = 1 } }