diff --git a/docs/dev/reference/services.md b/docs/dev/reference/services.md
index 8627efe2a..7afa19b1c 100644
--- a/docs/dev/reference/services.md
+++ b/docs/dev/reference/services.md
@@ -258,50 +258,6 @@ class Example
Not directly related to Contao, but this helper service from Symfony lets you retrieve
the current Contao front end or back end user from the firewall.
-{{< tabs groupid="services-contao4-contao5" style="code" >}}
-{{% tab title="Contao 4" %}}
-```php
-use Contao\BackendUser;
-use Contao\FrontendUser;
-use Symfony\Component\Security\Core\Security;
-
-class Example
-{
- public function __construct(private readonly Security $security)
- {
- }
-
- public function execute()
- {
- // Check for admin back end user role
- if ($this->security->isGranted('ROLE_ADMIN')) {
- // …
- }
-
- // Check for regular back end user role
- if ($this->security->isGranted('ROLE_USER')) {
- // …
- }
-
- // Check for front end user role
- if ($this->security->isGranted('ROLE_MEMBER')) {
- // …
- }
-
- // Get current back end user
- if (($user = $this->security->getUser()) instanceof BackendUser) {
- // …
- }
-
- // Get current front end user
- if (($user = $this->security->getUser()) instanceof FrontendUser) {
- // …
- }
- }
-}
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
```php
use Contao\BackendUser;
use Contao\FrontendUser;
@@ -342,8 +298,6 @@ class Example
}
}
```
-{{% /tab %}}
-{{< /tabs >}}
If you only need to check the authorization you can inject the `AuthorizationCheckerInterface` instead:
@@ -420,35 +374,6 @@ class Example
This service allows parsing *simple tokens*. See the [usage examples][SimpleTokenUsage] from the tests for more details.
-{{< tabs groupid="services-contao4-contao5-simple-token-parser" style="code" >}}
-{{% tab title="Contao 4" %}}
-```php
-use Contao\CoreBundle\Util\SimpleTokenParser;
-
-class Example
-{
- public function __construct(private readonly SimpleTokenParser $parser)
- {
- }
-
- public function execute()
- {
- // Token replacement
- $output = $this->parser->parse(
- 'I like ##cms##.',
- ['cms' => 'Contao']
- );
-
- // Conditional expressions
- $output = $this->parser->parse(
- 'This is {if value>=10}big{else}small{endif}',
- ['value' => 20]
- );
- }
-}
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
```php
use Contao\CoreBundle\String\SimpleTokenParser;
@@ -474,8 +399,6 @@ class Example
}
}
```
-{{% /tab %}}
-{{< /tabs >}}
### Extending the parser
diff --git a/docs/manual/administration-area/back-end-keyboard-shortcuts.de.md b/docs/manual/administration-area/back-end-keyboard-shortcuts.de.md
index 8513bd6b6..e7416e0a7 100644
--- a/docs/manual/administration-area/back-end-keyboard-shortcuts.de.md
+++ b/docs/manual/administration-area/back-end-keyboard-shortcuts.de.md
@@ -67,8 +67,6 @@ Im Modus »Mehrere bearbeiten« kommen weitere Kürzel hinzu:
Elemente können durch Anklicken in den Bearbeitungsmodus geschaltet werden, ohne dass dazu das Bearbeiten-Icon
verwendet werden muss. Folgende Aktionen werden unterstützt:
-{{< tabs >}}
-{{% tab title="Contao 5+" %}}
Windows:
- `[Ctrl] + Klick`: das Element bearbeiten
- `[Ctrl] + [Shift] + Klick`: die Kinder-Elemente bearbeiten
@@ -77,19 +75,6 @@ macOS:
- `[Cmd] + Klick`: das Element bearbeiten
- `[Cmd] + [Shift] + Klick`: die Kinder-Elemente bearbeiten
-{{% /tab %}}
-
-{{% tab title="Contao 4" %}}
-Windows:
-- `[Ctrl] + Klick`: das Element bearbeiten
-- `[Ctrl] + [Shift] + Klick`: die Elementeinstellungen bearbeiten
-
-macOS:
-
-- `[Cmd] + Klick`: das Element bearbeiten
-- `[Cmd] + [Shift] + Klick`: die Elementeinstellungen bearbeiten
-{{% /tab %}}
-{{< /tabs >}}
## Tastaturkürzel unter Windows, Linux und Mac {#tastaturkuerzel-unter-windows-linux-und-mac}
diff --git a/docs/manual/administration-area/back-end-keyboard-shortcuts.en.md b/docs/manual/administration-area/back-end-keyboard-shortcuts.en.md
index bac7e5603..59fdeac12 100644
--- a/docs/manual/administration-area/back-end-keyboard-shortcuts.en.md
+++ b/docs/manual/administration-area/back-end-keyboard-shortcuts.en.md
@@ -64,8 +64,6 @@ Further abbreviations are added in "Edit multiple" mode:
You can edit elements by clicking them, without having to use the edit icon. The following actions are supported:
-{{< tabs >}}
-{{% tab title="Contao 5+" %}}
Windows:
- `[Ctrl] + click`: edit the element
@@ -75,20 +73,7 @@ macOS:
- `[Cmd] + click`: edit the element
- `[Cmd] + [Shift] + click`: edit the element's children
-{{% /tab %}}
-{{% tab title="Contao 4" %}}
-Windows:
-
-- `[Ctrl] + click`: edit the element
-- `[Ctrl] + [Shift] + click`: edit the element settings
-
-macOS:
-
-- `[Cmd] + click`: edit the element
-- `[Cmd] + [Shift] + click`: edit the element settings
-{{% /tab %}}
-{{< /tabs >}}
## Keyboard shortcuts under Windows, Linux and Mac
diff --git a/docs/manual/article-management/content-elements/file-elements.de.md b/docs/manual/article-management/content-elements/file-elements.de.md
index a318d1054..a8002f204 100644
--- a/docs/manual/article-management/content-elements/file-elements.de.md
+++ b/docs/manual/article-management/content-elements/file-elements.de.md
@@ -67,27 +67,6 @@ Download-Dateitypen« festgelegt hast.
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_download` überschreiben.
-
-**HTML-Ausgabe**
-Das Element generiert folgenden HTML-Code:
-
-```html
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_element/download` template.
**HTML Output**
@@ -100,8 +79,6 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
## Downloads
@@ -169,29 +146,6 @@ types".
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite the content element `ce_downloads` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_elements/downloads` template.
**HTML Output**
@@ -211,5 +165,3 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
\ No newline at end of file
diff --git a/docs/manual/article-management/content-elements/link-elements.de.md b/docs/manual/article-management/content-elements/link-elements.de.md
index 4c9455885..5af385b2d 100644
--- a/docs/manual/article-management/content-elements/link-elements.de.md
+++ b/docs/manual/article-management/content-elements/link-elements.de.md
@@ -61,33 +61,6 @@ Suchmaschinen ausgewertet und sind daher ein wichtiges Instrument der Onpage-Opt
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_hyperlink` überschreiben.
-
-**HTML-Ausgabe**
-Das Element generiert folgenden HTML-Code:
-
-```html
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `content_element/toplink` überschreiben.
**HTML-Ausgabe**
@@ -153,5 +110,3 @@ Das Element generiert folgenden HTML-Code:
Nach oben
```
-{{% /tab %}}
-{{}}
\ No newline at end of file
diff --git a/docs/manual/article-management/content-elements/link-elements.en.md b/docs/manual/article-management/content-elements/link-elements.en.md
index 3f23d2a7c..dc75aacd3 100644
--- a/docs/manual/article-management/content-elements/link-elements.en.md
+++ b/docs/manual/article-management/content-elements/link-elements.en.md
@@ -60,33 +60,6 @@ tool for onpage optimization.
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite the standard `ce_hyperlink` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the standard `content_element/hyperlink` template.
**HTML Output**
@@ -110,8 +83,6 @@ If an image link is used, the HTML output looks like this:
```
-{{% /tab %}}
-{{}}
## Top link
@@ -125,20 +96,6 @@ The content element "Top-Link" adds a link to the article, with which you can ju
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template**: Here you can overwrite the content element `ce_toplink` template.
-
-**HTML output**
-The element generates the following HTML code:
-
-```html
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template**: Here you can overwrite the content element `content_element/toplink` template.
**HTML output**
@@ -149,5 +106,3 @@ The element generates the following HTML code:
Nach oben
```
-{{% /tab %}}
-{{}}
\ No newline at end of file
diff --git a/docs/manual/article-management/content-elements/media-elements.de.md b/docs/manual/article-management/content-elements/media-elements.de.md
index 1a9046b30..aaed26e65 100644
--- a/docs/manual/article-management/content-elements/media-elements.de.md
+++ b/docs/manual/article-management/content-elements/media-elements.de.md
@@ -43,25 +43,6 @@ möglich ist.
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_image` überschreiben.
-
-**HTML-Ausgabe**
-Das Element generiert folgenden HTML-Code:
-
-```html
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `content_element/youtube` überschreiben.
**HTML-Ausgabe**
@@ -493,5 +342,3 @@ Das Element generiert folgenden HTML-Code:
```
-{{% /tab %}}
-{{}}
diff --git a/docs/manual/article-management/content-elements/media-elements.en.md b/docs/manual/article-management/content-elements/media-elements.en.md
index 831985d65..bab3517c8 100644
--- a/docs/manual/article-management/content-elements/media-elements.en.md
+++ b/docs/manual/article-management/content-elements/media-elements.en.md
@@ -41,25 +41,6 @@ to an image link). Please note that for a linked image a lightbox full view is n
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite the content element `ce_image` template.
-
-**HTML output**
-The element generates the following HTML code:
-
-```html
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_element/image` template.
**HTML output**
@@ -75,9 +56,6 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
-
## Gallery
@@ -129,45 +107,6 @@ when clicked (JavaScript is required for this).
**Gallery template**: Here you can overwrite the gallery template.
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template**: Here you can overwrite the content element `ce_gallery` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template**: Here you can overwrite the content element `content_element/gallery` template.
**HTML Output**
@@ -199,8 +138,6 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
## Video/Audio
@@ -242,25 +179,6 @@ entire video)", "Metadata (preload the metadata only)" and "None (do not preload
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite the content element `ce_player` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-
-
- ……
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_element/player` template.
**HTML Output**
@@ -276,8 +194,6 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
## Vimeo
@@ -323,38 +239,6 @@ The content element "Vimeo" adds a Vimeo video to the article.
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template**: Here you can overwrite the content element `ce_vimeo` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template**: Here you can overwrite the content element `content_element/vimeo` template.
**HTML Output**
@@ -374,8 +258,6 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
## YouTube
@@ -426,40 +308,6 @@ The YouTube content element adds a YouTube video to the article.
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template**: Here you can overwrite the content element `ce_youtube` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template**: Here you can overwrite the content element `content_element/youtube` template.
**HTML Output**
@@ -479,5 +327,3 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
\ No newline at end of file
diff --git a/docs/manual/article-management/content-elements/text-elements.de.md b/docs/manual/article-management/content-elements/text-elements.de.md
index e127d63bd..54ae36d80 100644
--- a/docs/manual/article-management/content-elements/text-elements.de.md
+++ b/docs/manual/article-management/content-elements/text-elements.de.md
@@ -49,22 +49,6 @@ Verfügung:
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_code` überschreiben.
-
-**HTML-Ausgabe**
-Das Element generiert folgenden HTML-Code:
-
-```html
-
-
- …
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `content_element/code` überschreiben.
**HTML-Ausgabe**
@@ -77,9 +61,6 @@ Das Element generiert folgenden HTML-Code:
```
-{{% /tab %}}
-{{}}
-
## Beschreibungsliste
@@ -130,18 +111,6 @@ niedrigere Überschriften abbilden und natürlich mehrfach vorkommen.
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_headline` überschreiben.
-
-**HTML-Ausgabe**
-Das Element generiert folgenden HTML-Code:
-
-```html
-
…
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `content_element/headline` überschreiben.
**HTML-Ausgabe**
@@ -150,9 +119,6 @@ Das Element generiert folgenden HTML-Code:
```html
…
```
-{{% /tab %}}
-{{}}
-
## HTML
@@ -168,19 +134,11 @@ erlaubt sind. Die Liste der erlaubten Tags findest du in den Backend-Einstellung
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_html` überschreiben.
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `content_element/html` überschreiben.
-{{% /tab %}}
-{{}}
Das Inhaltselement hat kein umschließenden HTML-Markup.
-
## Aufzählung {#aufzaehlung}
Das Inhaltselement »Aufzählung« fügt dem Artikel eine nicht verschachtelte Liste hinzu. Du kannst zwischen einer
@@ -203,24 +161,6 @@ importieren kannst. Die CSV-Datei musst du vorher in das Upload-Verzeichnis übe
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_list` überschreiben.
-
-**HTML-Ausgabe**
-Das Element generiert folgenden HTML-Code:
-
-```html
-
-
-
…
-
…
-
…
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `content_element/list` überschreiben.
**HTML-Ausgabe**
@@ -235,13 +175,10 @@ Das Element generiert folgenden HTML-Code:
```
-{{% /tab %}}
-{{}}
Eine nummerierte Aufzählung verwendet das ``-Tag statt des `
`-Tags.
-
## Markdown
Mit dem Inhaltselement »Markdown« wird aus einem Markdown-Text HTML-Code erzeugt.
@@ -261,23 +198,6 @@ Mit dem Inhaltselement »Markdown« wird aus einem Markdown-Text HTML-Code erzeu
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_markdown` überschreiben.
-
-**HTML-Ausgabe**
-Das Element generiert folgenden HTML-Code:
-
-```html
-
-
-
…
-
…
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `content_element/markdown` überschreiben.
**HTML-Ausgabe**
@@ -289,8 +209,6 @@ Das Element generiert folgenden HTML-Code:
…
```
-{{% /tab %}}
-{{}}
Nachfolgend einige Beispiele für die Markdown-Syntax:
@@ -572,56 +490,6 @@ Auswahl getroffen hat. Die Zählung beginnt bei 0.
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_table` überschreiben.
-
-**HTML-Ausgabe**
-Das Element generiert folgenden HTML-Code:
-
-```html
-
-
-
…
-
-
-
-
…
-
…
-
…
-
…
-
-
-
-
-
-
…
-
…
-
…
-
…
-
-
-
-
-
-
…
-
…
-
…
-
…
-
-
-
…
-
…
-
…
-
…
-
-
-
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `content_element/table` überschreiben.
**HTML-Ausgabe**
@@ -668,9 +536,6 @@ Das Element generiert folgenden HTML-Code:
```
-{{% /tab %}}
-{{}}
-
## Text
@@ -740,34 +605,6 @@ möglich ist.
### Template-Einstellungen
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `ce_text` überschreiben.
-
-**HTML-Ausgabe**
-Das Element generiert folgenden HTML-Code:
-
-```html
-
-
…
-
…
-
-```
-
-Wurde dem Text ein Bild hinzugefügt, sieht die HTML-Ausgabe wie folgt aus:
-
-```html
-
-
…
-
-
- …
-
-
…
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Inhaltselement-Template:** Hier kannst du das Inhaltselement-Template `content_element/text` überschreiben.
**HTML-Ausgabe**
@@ -796,9 +633,6 @@ Wurde dem Text ein Bild hinzugefügt, sieht die HTML-Ausgabe wie folgt aus:
```
-{{% /tab %}}
-{{}}
-
## Ungefiltertes HTML
diff --git a/docs/manual/article-management/content-elements/text-elements.en.md b/docs/manual/article-management/content-elements/text-elements.en.md
index bf4c1f716..34df162a8 100644
--- a/docs/manual/article-management/content-elements/text-elements.en.md
+++ b/docs/manual/article-management/content-elements/text-elements.en.md
@@ -48,22 +48,6 @@ uses the Open Source code editor from [Ace](https://ace.c9.io/).
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite content element `ce_code` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-
- …
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_element/code` template.
**HTML Output**
@@ -76,9 +60,6 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
-
## Description list
@@ -130,18 +111,6 @@ headlines and of course can occur several times on a page.
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite the content element `ce_headline` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
…
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_element/headline` template.
**HTML Output**
@@ -150,9 +119,6 @@ The element generates the following HTML code:
```html
…
```
-{{% /tab %}}
-{{}}
-
## HTML
@@ -168,19 +134,11 @@ The list of allowed tags can be configured in the backend settings.
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite the content element `ce_html` template.
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_element/html` template.
-{{% /tab %}}
-{{}}
The content element has no enclosing HTML markup.
-
## List
The content element "List" adds a non-nested list to the article. You can choose between an ordered list and an
@@ -202,24 +160,6 @@ CSV file must have been transferred to the upload directory before.
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite the content element `ce_list` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-
-
…
-
…
-
…
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_element/list` template.
**HTML Output**
@@ -234,8 +174,6 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
A numbered enumeration uses the `` tag instead of the `
` tag.
@@ -259,23 +197,6 @@ The content element "Markdown" is used to generate HTML code from a markdown tex
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can `ce_markdown` overwrite the content element template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-
-
…
-
…
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can `content_element/markdown` overwrite the content element template.
**HTML Output**
@@ -287,9 +208,6 @@ The element generates the following HTML code:
…
```
-{{% /tab %}}
-{{}}
-
Below are some examples of Markdown syntax:
@@ -556,56 +474,6 @@ The count starts at 0.
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite the content element `ce_table` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-
-
…
-
-
-
-
…
-
…
-
…
-
…
-
-
-
-
-
-
…
-
…
-
…
-
…
-
-
-
-
-
-
…
-
…
-
…
-
…
-
-
-
…
-
…
-
…
-
…
-
-
-
-
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_element/table` template.
**HTML Output**
@@ -652,9 +520,6 @@ The element generates the following HTML code:
```
-{{% /tab %}}
-{{}}
-
## Text
@@ -723,34 +588,6 @@ texts are also evaluated by search engines and are therefore an important tool f
### Template settings
-{{< tabs groupid="contao-version" style="code" >}}
-{{% tab title="Contao 4" %}}
-**Content element template:** Here you can overwrite the content element `ce_text` template.
-
-**HTML Output**
-The element generates the following HTML code:
-
-```html
-
-
…
-
…
-
-```
-
-If an image was added to the text, the HTML output looks like this:
-
-```html
-
-
…
-
-
- …
-
-
…
-
-```
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
**Content element template:** Here you can overwrite the content element `content_element/text` template.
**HTML Output**
@@ -779,9 +616,6 @@ If an image was added to the text, the HTML output looks like this:
```
-{{% /tab %}}
-{{}}
-
## Unfiltered HTML
diff --git a/docs/manual/core-extensions/news/news-management.de.md b/docs/manual/core-extensions/news/news-management.de.md
index 7656dea36..283a35cc2 100644
--- a/docs/manual/core-extensions/news/news-management.de.md
+++ b/docs/manual/core-extensions/news/news-management.de.md
@@ -92,64 +92,6 @@ Seit Contao 4.4 wird diese Frage nur noch den Spambots »angezeigt«.
## RSS-Feeds
-{{< tabs groupid="contaoVersion">}}
-{{% tab title="Contao 4" %}}
-Jedes News- bzw. Blog-Archiv kann auf Wunsch als RSS/Atom-Feed exportiert werden. RSS-Feeds sind XML-Dateien mit deinen
-Beiträgen, die mit einem RSS-Reader abonniert und z. B. in eine andere Webseite eingebunden werden können.
-
-Die Feeds können über das [Seitenlayout](/de/layout/theme-manager/seitenlayouts-verwalten/#rss-atom-feeds) im Kopfbereich
-der Seite eingebaut werden. Mit »Kopfbereich« ist dabei nicht die Kopfzeile deines Seitenlayouts gemeint, sondern das
-`head`-Tag des HTML-Quelltextes.
-
-Um einen neuen Feed anzulegen klicke auf 
-**RSS-Feeds** und danach auf 
-**Neu**.
-
-
-### Titel und Sprache
-
-**Titel:** Der Titel wird als Feed-Titel in der XML-Datei ausgeben.
-
-**Feed-Alias:** Der Alias eines Feeds wird als Dateiname verwendet.
-
-**Feed-Sprache:** Hier kanst du die Sprache des [Feeds](http://www.rssboard.org/rss-language-codes#table) eingeben.
-
-
-### Nachrichtenarchive
-
-**Nachrichtenarchive:** Hier legst du fest, welche Nachrichtenarchive in dem Feed enthalten sind.
-
-
-### Feed-Einstellungen
-
-**Feed-Format:** Hier legst du das Format des Feeds fest. Contao unterstützt RSS 2.0 und Atom, die beiden am weitesten
-verbreiteten Formate.
-
-**Export-Einstellungen:** Hier legst du fest, ob lediglich die Teasertexte der Beiträge oder die kompletten Beiträge
-als Feed exportiert werden.
-
-**Maximale Anzahl an Beiträgen:** Hier kannst du die Anzahl der Beiträge des Feeds beschränken. In der Regel reichen um
-die 25 Beiträge pro Feed vollkommen aus. Meistens werden ohnehin nur die ersten drei bis fünf tatsächlich verwendet.
-
-**Basis-URL:** Die Basis-URL ist vor allem im Multidomain-Betrieb wichtig, wenn du mehrere Webseiten mit einer
-Contao-Installation betreibst. Damit der Feed auf die richtige Domain verlinkt, kannst du diese hier eingeben.
-
-**Feed-Beschreibung:** Hier kannst du eine Beschreibung des Feeds eingeben.
-
-
-### Bildeinstellungen
-
-**Bildgröße:** Hier kannst du die gewünschte Bildgröße angeben. Dabei kannst du zwischen folgenden Skalierungsmodi
-auswählen:
-
-| Eigene Größen | |
-|:-----------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------|
-| Exaktes Format (wichtiger Teil) | Erhält den wichtigen Teil des Bildes wie in der Dateiverwaltung angegeben. Falls erforderlich, wird das Bild beschnitten. |
-| Proportional | Die längere Seite des Bildes wird an die vorgegebenen Abmessungen angepasst und das Bild proportional verkleinert. |
-| An Rahmen anpassen | Die kürzere Seite des Bildes wird an die vorgegebenen Abmessungen angepasst und das Bild proportional verkleinert. |
-
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
Jedes News- bzw. Blog-Archiv kann auf Wunsch als RSS-, Atom- oder JSON-Feed exportiert werden. Feeds sind XML- und
JSON-Dateien mit deinen Beiträgen, die mit einem RSS-Reader abonniert und z. B. in eine andere Webseite eingebunden
werden können.
@@ -160,8 +102,6 @@ aus und nehme die gewünschten Einstellungen für deinen Feed vor.
Die Feeds können über das [Seitenlayout](/de/layout/theme-manager/seitenlayouts-verwalten/#rss-atom-feeds) im Kopfbereich
der Seite eingebaut werden. Mit »Kopfbereich« ist dabei nicht die Kopfzeile deines Seitenlayouts gemeint, sondern das
`head`-Tag des HTML-Quelltextes.
-{{% /tab %}}
-{{< /tabs >}}
## Nachrichtenbeiträge {#nachrichtenbeitraege}
diff --git a/docs/manual/core-extensions/news/news-management.en.md b/docs/manual/core-extensions/news/news-management.en.md
index cded9c5b3..63929202a 100644
--- a/docs/manual/core-extensions/news/news-management.en.md
+++ b/docs/manual/core-extensions/news/news-management.en.md
@@ -86,61 +86,6 @@ comment, you can disable the security question here. Since Contao 4.4, this ques
## RSS feeds
-{{< tabs groupid="contaoVersion">}}
-{{% tab title="Contao 4" %}}
-Every news or blog archive can be exported as RSS/Atom feed if desired. RSS feeds are XML files containing your news
-contributions, which can be subscribed to with an RSS reader and integrated into another website, for example.
-
-The feeds can be integrated via the [page layout](/en/layout/theme-manager/manage-page-layouts/#rss-atom-feeds) in the
-header of the page. The "header" is not the header of your page layout, but the tag `head` of the HTML source code.
-
-To create a new feed click on **RSS Feeds** 
-and then on **New** .
-
-
-### Title and language
-
-**Title:** The title is output as a feed title in the XML file.
-
-**Feed Alias:** The alias of a feed is used as the file name.
-
-**Feed language**: Here you can enter the language of the [feed](http://www.rssboard.org/rss-language-codes#table).
-
-
-### News archives
-
-**News archives:** Here you define which news archives are included in the feed.
-
-
-### Feed settings
-
-**Feed format**: Here you can define the format of the feed. Contao supports RSS 2.0 and Atom, the two most popular
-formats.
-
-**Export settings:** Here you can specify whether only the teaser texts of the posts or the complete posts are exported
-as feed.
-
-**Maximum number of contributions:** Here you can limit the number of posts of the feed. Usually about 25 posts per
-feed are sufficient. Most of the time only the first three to five are actually used anyway.
-
-**Base URL:** The base URL is especially important in multi-domain operation, if you run several websites with one
-Contao installation. To make sure that the feed links to the correct domain, you can enter it here.
-
-**Feed description**: Here you can enter a description of the feed.
-
-
-### Image settings
-
-**Image size:** Here you can specify the desired image size. You can choose between the following scaling modes:
-
-| Custom dimensions | |
-|:--------------------------------|:--------------------------------------------------------------------------------------------------------------------|
-| Crop (important part) | Preserves the important part of an image as specified in the file manager. If necessary, the image will be cropped. |
-| Proportional | The longer side of the image is adjusted to the given dimensions and the image is resized proportionally. |
-| Fit the box | The shorter side of the image is adjusted to the given dimensions and the image is resized proportionally. |
-
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
Every news or blog archive can be exported as RSS/Atom or JSON feed if desired. RSS feeds are XML files containing your
news contributions, which can be subscribed to with an RSS reader and integrated into another website, for example.
@@ -149,9 +94,6 @@ desired settings for your feed.
The feeds can be integrated via the [page layout](/en/layout/theme-manager/manage-page-layouts/#rss-atom-feeds) in the
header of the page. The "header" is not the header of your page layout, but the tag `head` of the HTML source code.
-{{% /tab %}}
-{{< /tabs >}}
-
## News items
diff --git a/docs/manual/layout/module-management/user-modules.de.md b/docs/manual/layout/module-management/user-modules.de.md
index 8bb3cf06f..380e81e2b 100644
--- a/docs/manual/layout/module-management/user-modules.de.md
+++ b/docs/manual/layout/module-management/user-modules.de.md
@@ -135,34 +135,6 @@ Das Frontend-Modul generiert folgenden HTML-Code:
```
-## Automatischer Logout
-
-{{< tabs groupid="contaoVersion">}}
-{{% tab title="Contao 4" %}}
-Das Frontend-Modul »Automatischer Logout« fügt der Webseite ein unsichtbares Modul hinzu, das einen angemeldeten
-Frontend-Benutzer automatisch abmeldet.
-
-Sobald sich ein Mitglied im Frontend der Webseite angemeldet hat, erscheint im Hauptmenü auf der rechten Seite ein
-Logout-Link, mit dem es sich wieder abmelden kann. In Wirklichkeit handelt es sich dabei um zwei verschiedene Seiten in
-der Seitenstruktur, die einmal das Login- und einmal das Logout-Modul enthalten.
-
-### Weiterleitung
-
-**Weiterleitungsseite:** Hier legst du fest, auf welche Seite ein Frontend-Benutzer nach der Abmeldung weitergeleitet
-wird.
-
-**Zur zuletzt besuchten Seite:** Wenn du diese Option auswählst, wird das Mitglied zur zuletzt besuchten Seite anstatt
-zur Weiterleitungsseite weitergeleitet.
-
-Das Modul erzeugt keine HTML-Ausgabe.
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
-Dieses Modul wurde durch den Seitentyp »[Abmelden](/de/seitenstruktur/abmelden/)« ersetzt, welches einen Abmelde-Link für
-einen geschützten Bereich erstellt.
-{{% /tab %}}
-{{< /tabs >}}
-
-
## Personendaten
Das Frontend-Modul »Personendaten« fügt der Webseite ein Formular hinzu, mit dem ein Mitglied seine persönlichen
diff --git a/docs/manual/layout/module-management/user-modules.en.md b/docs/manual/layout/module-management/user-modules.en.md
index e33ed776b..1b26ca8cc 100644
--- a/docs/manual/layout/module-management/user-modules.en.md
+++ b/docs/manual/layout/module-management/user-modules.en.md
@@ -125,33 +125,6 @@ The front end module generates the following HTML code:
```
-## Automatic logout
-
-{{< tabs groupid="contaoVersion">}}
-{{% tab title="Contao 4" %}}
-The front end module "Automatic logout" adds an invisible module to the website that automatically logs out a logged in
-front end user.
-
-As soon as a member has logged in to the front end of the website, a logout link appears in the main menu on the right
-hand side, with which the member can log out again. In reality, these are two different pages in the page structure,
-which contain the login and the logout module.
-
-### Redirect settings
-
-**Redirect page:** Here you can define to which page a front end user will be forwarded after logging out.
-
-**Redirect to last page visited:** If you select this option, the member will be redirected to the last page visited
-instead of the redirection page.
-
-The module does not generate HTML output.
-{{% /tab %}}
-{{% tab title="Contao 5" %}}
-This module has been replaced by the "[Logout](/en/site-structure/logout/)" page type, which creates a logout link for
-a protected area.
-{{% /tab %}}
-{{< /tabs >}}
-
-
## Personal data
The front end module "Personal data" adds a form to the website, which allows a member to change their personal data such