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
However, the error message is just wrong: Error: Unmatched start tag 'label', pointing at the beginning of the label element. It took me quite a long time to understand what was happening: it would be nice to have it pointing to the div element instead and state that it can't be within a label element.
I'm using TyXML 4.6.0 with tyxml-ppx.
The text was updated successfully, but these errors were encountered:
There is a popular way to style checkbox based on this HTML code:
What I did not realise is that this HTML, although popular, does not respect the specification (
div
should bespan
here).TyXML does detect that and correctly rejects the program:
However, the error message is just wrong:
Error: Unmatched start tag 'label'
, pointing at the beginning of thelabel
element. It took me quite a long time to understand what was happening: it would be nice to have it pointing to thediv
element instead and state that it can't be within alabel
element.I'm using TyXML 4.6.0 with
tyxml-ppx
.The text was updated successfully, but these errors were encountered: