Closed sypets closed 2 years ago
Since this affects a lot of pages and also affects extension documentation and probably not all will be fixed, I created an issue in the theme repo: TYPO3-Documentation/sphinx_typo3_theme#81
Main reference manuals were checked (TCA, TypoScript, TSconfig, TYPO3 Explained and changelog. There were only a handful of unwanted blockquotes which should be fixed with the added PR and some wanted blockquotes (for actual quotes).
Due to change in template, paragraphs that are indented without reason will usually get styled as a quote, e.g.
In most cases this is not what we want.
Reasons for blockquotes
Search for occurrences
We can search for these by searching for
<blockquote>
in the generated documentation, e.g.grep -r "<blockquote" Documentation-GENERATED-temp/Result/project/0.0.0/
or
grep -r -A 1 "<blockquote" Documentation-GENERATED-temp/Result/project/0.0.0/
for more context.
Manuals