I'm using the CLI to generate my file. Specifically, the command inliner index.html > output.html. The console outputs path.existsSync is now called 'fs.existsSync'. when I run the command.
I perused the source here on Github, but nothing struck me as a potential cause for this behavior.
If it's a feature, and not a bug, it seems like strange behavior for an inliner tool. I'd expect it to to simply inline the css and not add anything itself.
Consequences of the issue is that the resultant HTML might break further processes done to the HTML. One such example is juice, which won't allow you to modify the body once it has the zoom property set by inliner.
Inlining my HTML documents adds a property I did not specify to the body element of my page:
zoom: ;
Here's my set up:
index.html
style.css
output.html
I'm using the CLI to generate my file. Specifically, the command
inliner index.html > output.html
. The console outputspath.existsSync is now called 'fs.existsSync'.
when I run the command.I perused the source here on Github, but nothing struck me as a potential cause for this behavior.
If it's a feature, and not a bug, it seems like strange behavior for an inliner tool. I'd expect it to to simply inline the css and not add anything itself.
Consequences of the issue is that the resultant HTML might break further processes done to the HTML. One such example is juice, which won't allow you to modify the
body
once it has the zoom property set by inliner.