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
HTML tags that don't have a corresponding closing tag (ex: <img>, <br>, ...) cause the following elements to be indented, as if they were children.
<img>
<br>
For example, this:
<a><img></a> <div> ... </div>
Formats to this:
<a> <img></a> <div> ... </div>
Perhaps add some exceptions for specific tags?
Edit: fixed code styling.
The text was updated successfully, but these errors were encountered:
I think it cannot recognize auto closing tags. I will lookup the code try
<a><img /></a> <div> ... </div>```
Sorry, something went wrong.
No branches or pull requests
HTML tags that don't have a corresponding closing tag (ex:
<img>
,<br>
, ...) cause the following elements to be indented, as if they were children.For example, this:
Formats to this:
Perhaps add some exceptions for specific tags?
Edit: fixed code styling.
The text was updated successfully, but these errors were encountered: