您可以在没有 div 的情况下获得渲染,但不是您想要的方式。基本上,您必须更改 tt_content 中定义的每种可能的内容类型。请参阅 Typoscript 对象浏览器以了解如何在 tt_content 节点中定义每种内容类型。
lib.inhalt = COA
lib.inhalt {
10 < styles.content.get
10.stdWrap.append < styles.content.getRight
10.stdWrap.append {
renderObj < tt_content
renderObj {
# Your modifications of tt_content go here
}
}
}
You can get the rendering without divs but not the way you had in mind. Basically you would have to alter each of the possible content types that are defined in the tt_content. See Typoscript Object Browser to see how each content type is defined in the tt_content node.
lib.inhalt = COA
lib.inhalt {
10 < styles.content.get
10.stdWrap.append < styles.content.getRight
10.stdWrap.append {
renderObj < tt_content
renderObj {
# Your modifications of tt_content go here
}
}
}
发布评论
评论(1)
您可以在没有 div 的情况下获得渲染,但不是您想要的方式。基本上,您必须更改
tt_content
中定义的每种可能的内容类型。请参阅 Typoscript 对象浏览器以了解如何在tt_content
节点中定义每种内容类型。You can get the rendering without divs but not the way you had in mind. Basically you would have to alter each of the possible content types that are defined in the
tt_content
. See Typoscript Object Browser to see how each content type is defined in thett_content
node.