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
Input
<table><thead> <tr> <th>name</th><th>address</th> </tr> </thead> <tbody><tr> <td>name</td><td>address</td> </tr></tbody> <tfoot></tfoot></table>
Expected Output
<table> <thead> <tr> <th>name</th> <th>address</th> </tr> </thead> <tbody> <tr> <td>name</td> <td>address</td> </tr> </tbody> <tfoot></tfoot> </table>
Actual Output
<table> <thead> <tr> <th> name </th> <th> address </th> </tr> </thead> <tbody> <tr> <td> name </td> <td> address </td> </tr> </tbody> <tfoot></tfoot> </table>
The text was updated successfully, but these errors were encountered:
Don't know if it is linked but I also have this behaviour with simple HTML, and breaking everything on a new line seems like overkill:
<h1>Small title</h1>
<h1> Small title </h1>
Sorry, something went wrong.
586e8f4
Successfully merging a pull request may close this issue.
Input
Expected Output
Actual Output
The text was updated successfully, but these errors were encountered: