First of all, thanks for your work! Your plugin is exactly the one I needed!
Unfortunately you're adding linebreaks _\n between this character **`**_ and unnecessary whitespaces , in my eyes ;), between the start and the end. Sadly this breaks my minified HTML. Finally typescripts screws it up by rewriting those breaks into "\n \uFFFF" which are interpreted in the end by the browser.
Is there a way add a flag or something which skips the beautification or to remove it? Temporary I rewrote it like this:
Hi there
First of all, thanks for your work! Your plugin is exactly the one I needed!
Unfortunately you're adding linebreaks _\n between this character **`**_ and unnecessary whitespaces , in my eyes ;), between the start and the end. Sadly this breaks my minified HTML. Finally typescripts screws it up by rewriting those breaks into "\n \uFFFF" which are interpreted in the end by the browser.
Is there a way add a flag or something which skips the beautification or to remove it? Temporary I rewrote it like this:
From
To
And I also removed the logic for the spaces in the "indent"-function.
In my case these works. When I minify my HTML I get an one liner. When I skip my minification I get a human readable template string.