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
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.
The text was updated successfully, but these errors were encountered:
Browsers accept invalid HTML and rearranges things into valid HTML.
So:
will turn into:
This will make Mayu confused because there is a tbody where there should be a tr...
Something like this maybe:
https://github.com/facebook/react/blob/97d75c9c8bcddb0daed1ed062101c7f5e9b825f4/packages/react-dom-bindings/src/client/validateDOMNesting.js
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.
The text was updated successfully, but these errors were encountered: