Empty lines unexpectedly added after table tags
See original GitHub issuePrettier 1.16.1 Playground link
--parser html
Input:
<table>
<tr></tr>
</table>
<div></div>
Output:
<table>
<tr></tr>
</table>
<div></div>
Expected behavior:
<table>
<tr></tr>
</table>
<div></div>
Happens only if tbody
tags are omitted.
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
html - Four blank line before the table - Stack Overflow
When I see it via browser I see four blank line before the table. Where are they and how to remove ...
Read more >Blank lines added in the email client before a table
After these steps, the unexpected break lines should no longer appear in the email client before any <table> tags. The world works with...
Read more >Prevent empty line after tabular environment - TeX
To remove the empty line, go without flushleft environment and use \raggedright . To correct the line number placement: either put an empty ......
Read more >Bug while adding empty line of space inside the page content
On the Cloud platform, the added space lines between content on the "Editor Mode" are arbitrarily reflected on the "Published.
Read more >Solved: Removing blank lines - Power Platform Community
Please try the following methods to achieve your needs. Initialize String variable-Breakline, and add a carriage return inside Value. Initialize another String ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Pseudo
<tbody>
for<tr>
is removed in angular-html-parser@1.4.0, updating the parser should fix the issue.closed by #7468