html-parse-stringify2 icon indicating copy to clipboard operation
html-parse-stringify2 copied to clipboard

add ignoreCollapse options

Open jamuhl opened this issue 5 years ago • 0 comments

Based on the specification this module collapses nodes only having whitespace. While this is correct there are cases you want to persist those. We built a simple syntax highlighting for i18n formats based on this module where we overlay a div over a text input field - but having this collapsing the content gets out of sync -> therefore, this option would help:

// content
<p>
Some
</p>
<p>
Strange Value2
</p>

// ends in (without this option)
<p>
Some
</p> <p>
Strange Value2
</p>

jamuhl avatar Oct 11 '19 09:10 jamuhl