Results 12 comments of Vegard Øye

Hang on. It turns out that the version in my `node_modules/` folder (which I got via `npm`) is really old -- the latest version was published 5 years ago. Duplicate...

@colcord, try replacing this part: ```js .replace(/[ ]+\n/g, '\n') ``` with: ```js .replace(/[ ]+\n/g, '\n') .replace(/\u00a0/g, ' ') ````