TYPO3 Tipps:
Heading br Enable pagination
Yes, that's clear. A break in a heading is not exactly ideal... Sometimes the desire for layout prevails. So, if it cannot be avoided, then it is possible with TYPO3 versions up to 6.2 with:
lib.stdheader.10.setCurrent.htmlSpecialChars = 0
in the setup to activate the function.
From TYPO3 Version 7
However, this instruction is not effective under Fluid. It is integrated from the TYPO3 version onwards.
Procedure in the fluid_styled_content
Since we do not make any changes in the TYPO3 core, as these files are overwritten during an update, we create a copy of the relevant template.
This file is copied once:
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<f:switch expression="{layout}">
<f:case value="1">
<h1><f:format.raw><f:link.typolink parameter="{link}">{header}</f:link.typolink></f:format.raw></h1>
</f:case>
<f:case value="2">
<h2><f:format.raw><f:link.typolink parameter="{link}">{header}</f:link.typolink></f:format.raw></h2>
</f:case>
<f:case value="3">
<h3><f:format.raw><f:link.typolink parameter="{link}">{header}</f:link.typolink></f:format.raw></h3>
</f:case>
<f:case value="4">
<h4><f:format.raw><f:link.typolink parameter="{link}">{header}</f:link.typolink></f:format.raw></h4>
</f:case>
<f:case value="5">
<h5><f:format.raw><f:link.typolink parameter="{link}">{header}</f:link.typolink></f:format.raw></h5>
</f:case>
<f:case value="6">
<h6><f:format.raw><f:link.typolink parameter="{link}">{header}</f:link.typolink></f:format.raw></h6>
</f:case>
<f:case value="100">
<f:comment> -- do not show header -- </f:comment>
</f:case>
<f:case default="true">
<f:if condition="{default}">
<f:render partial="Header/Header" arguments="{
header: header,
layout: default,
link: link}" />
</f:if>
</f:case>
</f:switch>
</html>
TYPO3 Extension: fluid_styled_content
Version: <= 12.xx
Version: <= 12.xx