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
This is rendered as Hello World in the browser as the newline + tab between the spans is collapsed to a single space. Unfortunately, minhtml is minifying this down to:
<body><span>Hello</span><span>World</span>
Which is rendered as HelloWorld (no space between the words).
Note that this is broken with all span-like elements, such as <i> or a, etc:
If I have some HTML such as:
This is rendered as
Hello World
in the browser as the newline + tab between thespans
is collapsed to a single space. Unfortunately, minhtml is minifying this down to:Which is rendered as
HelloWorld
(no space between the words).Note that this is broken with all span-like elements, such as
<i>
ora
, etc:Note that "naked" text nodes are handled correctly:
yields
<body><a href=#a>Hello</a> there <a href=#b>World</a>
with the spaces kept in correctly.The text was updated successfully, but these errors were encountered: