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
It looks like the HTML_VOID_TAGS logic breaks a few tags.
For example, given the following input:
['html', ['body', ['form', ['input', 'abc123'], ['input', 'my-username'], ['input', 'my-password'], ['input', {'type': 'submit'}, 'Submit'] ]]]
I get the following output:
<html><body><form> <input>abc123 <input>my-username <input>my-password <input type="submit">Submit </form></body></html>
Notice the lack of closing </input> tags
</input>
It looks like the void tag logic should be ignored if there is an enclosed value. Alternatively, shouldn't be in the VOID tags list.
The text was updated successfully, but these errors were encountered:
Fix input tag not closing
d654fda
Fix nosamanuel#10 by removing 'input' from VOID tags list. Simplify some logic with f-strings.
No branches or pull requests
It looks like the HTML_VOID_TAGS logic breaks a few tags.
For example, given the following input:
I get the following output:
Notice the lack of closing
</input>
tagsIt looks like the void tag logic should be ignored if there is an enclosed value. Alternatively, shouldn't be in the VOID tags list.
The text was updated successfully, but these errors were encountered: