-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Browsers accept invalid HTML and rearranges things into valid HTML.
So:
<table>
<tr></tr>
</table>will turn into:
<table>
<tbody>
<tr></tr>
</tbody>
</table>This will make Mayu confused because there is a tbody where there should be a tr...
Something like this maybe:
This should be configurable so that it can be disabled in production mode.
Update: If #20 gets implemented with Nokogiri, then, I think that Nokogiri will make sure elements are wrapped correctly. The errors from Nokogiri could be logged, but the server side DOM will at least be valid, so that it will always be in sync with the browser DOM.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request