We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When forcing manual line breaks in redactor fields, e.g.
foo bar baz
redactor will put a <br /> element in between them, e.g.
<br />
<p>foo<br />bar<br />baz</p>
I'd like to get rid of the trailing slash, as that's not recommended in HTML5.
The text was updated successfully, but these errors were encountered:
Same problem with Craft 4.2.5.1 and Redactor 3.0.2.
Sorry, something went wrong.
I imagine this is for backwards compatibility with XHTML. The plugin may be agnostic toward the doc type.
No branches or pull requests
Description
When forcing manual line breaks in redactor fields, e.g.
redactor will put a
<br />
element in between them, e.g.<p>foo<br />bar<br />baz</p>
I'd like to get rid of the trailing slash, as that's not recommended in HTML5.
Additional info
The text was updated successfully, but these errors were encountered: