remy / inliner

Node utility to inline images, CSS and JavaScript for a web page - useful for mobile sites
MIT License
1.1k stars 165 forks source link

Inline iframes #229

Open soshimee opened 2 years ago

soshimee commented 2 years ago

This doesn't seem to inline iframes, which I need to be inlined. I think this can be done with base64.

remy commented 2 years ago

You'd have to recursively inline every asset in the iframe target. Doable, but not so fun! Can't remember what the support for srcDoc is like, might be a cleaner option, but yeah, base64 would do the trick too.

soshimee commented 2 years ago

It looks like most browsers support srcDoc (except IE which almost no one uses now). Yeah, it would definitely be a pain to inline all the iframe srcs as well.