You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a <code> tag in a <pre> tag then every time you format the document it adds a new line inside the start of the <pre> tag. This will keep adding new lines to the <pre> tag endlessly.
The formatter should ignore <pre> tags as they preserve whitespace.
Example:
<pre><code>{{ someProp }}</code></pre>
Will turn into:
<pre>
<code>{{ someProp }}</code></pre>
The text was updated successfully, but these errors were encountered:
If you have a
<code>
tag in a<pre>
tag then every time you format the document it adds a new line inside the start of the<pre
> tag. This will keep adding new lines to the<pre>
tag endlessly.The formatter should ignore
<pre>
tags as they preserve whitespace.Example:
Will turn into:
The text was updated successfully, but these errors were encountered: