scinfu / SwiftSoup

SwiftSoup: Pure Swift HTML Parser, with best of DOM, CSS, and jquery (Supports Linux, iOS, Mac, tvOS, watchOS)
https://scinfu.github.io/SwiftSoup/
MIT License
4.53k stars 345 forks source link

`.outerHtml()` wiil break <pre> #79

Closed nswbmw closed 6 years ago

nswbmw commented 6 years ago

.outerHtml() wiil break <pre><div>...</div></pre>, add needless spaces and \n in <pre></pre>?

nswbmw commented 6 years ago

fixed by use:

<style>
    pre { white-space: normal; }
</style>