TYPO3 12.4.0 - 12.4.99
- This extension provides general support for the
<wbr>
HTML element in CKEditor 5 and TYPO3 v12 - Editors can insert the element by pressing a button at the current cursor position
- All
<wbr>
elements are highlighted in the editor (similar to the softhyphen)
- Allows a line break without adding a hyphen to the wrapped string
- Useful e.g. for long URLs or file paths, displayed on mobile websites or inside narrow parent elements
Line breaks are only applied by browsers if the word is too long for the surrounding element or viewport.
Further information: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr
The <wbr>
elements are highlighted with an arrow on a colored background
(similar to the soft-hyphen in TYPO3's editor).
In the source editing mode, <wbr>
elements are visible in the HTML.
In the frontend, the browser adds line breaks to the text where <wbr>
elements are set
(but only where necessary).
composer req sebkln/ckeditor-wordbreak
The extension needs to be installed as any other extension of TYPO3 CMS.
Perform the following steps:
- Load and install the extension
- Include the static template "CKEditor plugin: wordbreak" into your TypoScript template
- Extend your CKEditor configuration (see below)
editor:
config:
# 1. Import the plugin:
importModules:
- '@sebkln/ckeditor-wordbreak'
toolbar:
items:
# 2. Add the button to your existing list of toolbar items:
- WordBreak
# 3. Add <wbr> tag to list of tags that are allowed in the content:
processing:
allowTags:
- wbr