express-ejs-layouts
express-ejs-layouts copied to clipboard
Add <noscript> support for 'extractStyles'
When using
app.set("layout extractStyles", true)
it would be very usefull if styles inside of <noscript>
blocks would preserve this fact, otherwise using Fallback styles like this:
<noscript>
<link rel="stylesheet" href="/assets/css/noscript.css" type="text/css" />
</noscript>
becomes impossible (without using hacks like removing the style with JS)
- Stevetec