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
Produces <html><body><span>hello world</span></body></html> where the attribute was removed. This means the user is no longer allowed to edit the "hello world" text in the span.
This can be worked around by using contenteditable="true" instead, but this defeats the purpose of minimizing the HTML
The text was updated successfully, but these errors were encountered:
Minimize removes the
contenteditable
attribute, which leads to major changes to the parsed HTML codeExample code:
Produces
<html><body><span>hello world</span></body></html>
where the attribute was removed. This means the user is no longer allowed to edit the "hello world" text in the span.This can be worked around by using
contenteditable="true"
instead, but this defeats the purpose of minimizing the HTMLThe text was updated successfully, but these errors were encountered: