Hello,
There is obviously a problem with TemplateStyles on frwiki.
As bug reported here, after investigation, unwanted content seems to be added in the TemplateStyles CSS.
The bug is visible in TemplateData blocks, like here : Exemple  : Infobox is displayed, instead of: Exemple : Infobox
The CSS TemplateStyles sheet : Modèle:Méta documentation de modèle/styles.css
In particular, this rule:
.mw-templatedata-doc-params dt:after { content: "\a0:\a0";
Is modified as follows in the source code in the page:
.mw-parser-output .mw-templatedata-doc-params dt:after{content:"\a0 :\a0 "}
The code:
content: "\a0:\a0";
Is incorrectly replaced by:
content:"\a0 :\a0 "
By investigating a little, it may be possible that this bug is related to the modifications made T197879
Thank you.
(sorry for my bad English)