We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
user> (require '[net.cgrand.enlive-html :as html]) nil user> (html/emit* {:tag :col}) ("<" "col" "></" "col" ">")
Expected result: just strings amounting to ""; no end tag.
In HTML 4, col is an "empty" element whose end tag is "forbidden", according to https://www.w3.org/TR/html401/struct/tables.html#h-11.2.4.2
And in HTML 5 there is "No end tag" according to https://www.w3.org/TR/html5/tabular-data.html#the-col-element
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected result: just strings amounting to ""; no end tag.
In HTML 4, col is an "empty" element whose end tag is "forbidden", according to
https://www.w3.org/TR/html401/struct/tables.html#h-11.2.4.2
And in HTML 5 there is "No end tag" according to
https://www.w3.org/TR/html5/tabular-data.html#the-col-element
The text was updated successfully, but these errors were encountered: