Creating new lines before a-tags

Viewed 15

How to stop creating new lines in a paragraph when it has a link?

Input:

<p><b>asfd;a <a href="http://google.com" target="_blank">sd;lfkja</a> sd;lfka</b></p>

Output:

<p>
  <b>asfd;a <a href="http://google.com" target="_blank">sd;lfkja</a> sd;lfka</b>
</p>

If there is no A tag, then everything looks fine.

<p><b>asfd;a sd;lfkja sd;lfka</b></p>

Line length limit (printWidth) does not help.

playground

0 Answers
Related