paolochiodi / htmlcompressor

A work in progress port of google's htmlcompressor.jar
Other
150 stars 26 forks source link

Properly remove the whitespace around <li> tags #17

Closed izelnakri closed 10 years ago

izelnakri commented 10 years ago
  • tags leave one space before and after the
  • tag that results in classic html whitespace issue. ``` html
    • Total Shares
    • Other li tag
    ``` seems like all the tags have a leading and trailing space.
  • izelnakri commented 10 years ago

    Sorry just found the appropriate key in the options hash, I missed it somehow.

    paolochiodi commented 10 years ago

    Hi @izelnakri yes, there's a key for that. Please note that

    <ul><li>Total Shares</li><li>Other li tag</li></ul>

    is not equivalent to

    <ul> <li>Total Shares</li> <li> Other li tag </li> </ul>