You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you enter a link with a relative URL in the RichTextEditor, the link is removed.
Example: <a href="/my/realitve/url">link</a> results in <a rel="nofollow">link</a>
This is because the Jsoup implementation in the method static String sanitize(String html) removes the link.
Solution: If the visibility of the sanitize method were more open, I could adjust this behaviour myself.
Description
If you enter a link with a relative URL in the RichTextEditor, the link is removed.
Example:
<a href="/my/realitve/url">link</a>
results in<a rel="nofollow">link</a>
This is because the Jsoup implementation in the method
static String sanitize(String html)
removes the link.Solution: If the visibility of the
sanitize
method were more open, I could adjust this behaviour myself.Expected outcome
Output should be
Minimal reproducible example
Steps to reproduce
Environment
Vaadin version(s): 24.5.3
OS: macOS Sonoma 14.6.1
Browsers
Issue is not browser related
The text was updated successfully, but these errors were encountered: