我想从某些内容元素类型的RTE的格式下拉菜单中排除最多的h *标签。
我正在从EXT:rte_ckeditor/Configuration/RTE/Default.yaml
的{{1}}加载一个Yaml文件。
ext_localconf.php:
ext_localconf.php
normalText.yaml:
if (!defined('TYPO3_MODE')) {
die('Access denied.');
}
$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['normalText'] = 'EXT:XXX/Configuration/RTE/normalText.yaml';
我猜我的问题是在pageTs中将配置分配给我的内容元素类型。我尝试使用
imports:
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Default.yaml" }
editor:
config:
format_tags: "p;h3"
,其中 XXX_normal_text 是RTE.config.XXX_normal_text.bodytext.preset = normalText
中我的内容元素类型的名称。
我发现(e.g. this)的所有示例都使用 tx_news 扩展名。我无法将其映射到我的问题。
我正在使用TYPO3 8.7。