TYPO3-Documentation / T3DocTeam

This repository is for the Documentation Team. To contribute, please see CONTRIBUTING.md For help and support on TYPO3, please see: https://typo3.org/help/
3 stars 1 forks source link

[MAINTAINANCE] Fix indent / quote problem in all manuals #150

Closed sypets closed 2 years ago

sypets commented 4 years ago

Due to change in template, paragraphs that are indented without reason will usually get styled as a quote, e.g.

image

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

sypets commented 4 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

sypets commented 2 years ago

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).