claudetech / node-static-i18n

HTML static pages i18n tool
https://www.npmjs.com/package/static-i18n
MIT License
102 stars 21 forks source link

relative srcset attribute paths for img tags #49

Open fedeolto opened 2 years ago

fedeolto commented 2 years ago

Hi, I have this tag in my ejs template

<img 
 srcset="img/desktop/logo-horiz-colors.png 1024w,
 img/mobile/logo-horiz-colors.png 640w"
 src="img/desktop/logo-horiz-colors.png"
... >

being transformed in:

 <img srcset="img/desktop/logo-horiz-colors.png 1024w,
 img/mobile/logo-horiz-colors.png 640w" 
 src="../img/desktop/logo-horiz-colors.png" 
 ...>

As you can see the src attribute is relative, but the srcset isn't

I submitted PR https://github.com/claudetech/node-static-i18n/pull/50 to fix it

fedeolto commented 2 years ago

up

Emkacf commented 2 years ago

up