straker / js13k-packer

Optimally package js13kGames files for upload.
MIT License
5 stars 1 forks source link

HTML minification removes whitespace between inline tags #6

Open straker opened 2 months ago

straker commented 2 months ago

For example:

<u>Be aware</u> that the <b>Darkness</b> can overtake other tiles and even
your buildings (removing them from the board) unless you have a <b>Light Tower</b>
nearby. A building that is covered by <b>Darkness</b> does not score points 
or contribute to points of other Tiles.

Turns into

<u>Be aware</u>that the<b>Darkness</b>can overtake other tiles and even
your buildings (removing them from the board) unless you have 
a<b>Light Tower</b>nearby. A building that is covered by<b>Darkness</b>does 
not score points or contribute to points of other Tiles.
straker commented 2 months ago

It's the option collapseInlineTagWhitespace: true, it should be false.