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
Hello guys, i try to paste some html in an editor and i notice my br tag are not kept
this is the configuration :
paste: { forcePlainText: false, cleanPastedHTML: true, cleanReplacements: [], cleanAttrs: ['class', 'style', 'dir'], cleanTags: ['meta'], unwrapTags: ['div', 'li', 'ul', 'code', 'em'] },
and the HTML i try to paste
<p>TITRE 1</p><p><u>coucou</u></p><p>plus couc</p><br><p>TITRE 2</p><p><b>test</b></p><br><p>TITRE 3</p>
result of the paste in the editor
<p>TITRE 1</p><p><u>coucou</u></p><p>plus couc</p><p>TITRE 2</p><p><b>test</b></p><p>TITRE 3</p>
Its reproductible on the demo https://yabwe.github.io/medium-editor/demo.html
If I put cleanPastedHTML to false, the br are kept
There is a workaround for that ?
thanks !
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Hello guys, i try to paste some html in an editor and i notice my br tag are not kept
this is the configuration :
and the HTML i try to paste
result of the paste in the editor
Its reproductible on the demo https://yabwe.github.io/medium-editor/demo.html
If I put cleanPastedHTML to false, the br are kept
Versions
There is a workaround for that ?
thanks !
The text was updated successfully, but these errors were encountered: