dave-kennedy / clean-html

HTML cleaner and beautifier for Node
The Unlicense
47 stars 10 forks source link

Multiline comment wrapping #7

Closed dave-kennedy closed 7 years ago

dave-kennedy commented 7 years ago

Example input:

    <!--
        I prefer the concrete, the graspable, the proveable.
    -->

Expected output (when wrap = 40):

    <!-- I prefer the concrete, the
        graspable, the proveable. -->

Actual output:

    <!--
          I prefer the concrete, the
    graspable, the proveable.
        -->