sunflowerdeath / webfonts-generator

Generator of webfonts from svg icons
The Unlicense
271 stars 152 forks source link

Don't use an HTML templating tool for CSS #8

Open BevanR opened 8 years ago

BevanR commented 8 years ago

Handlebars is a great templating tool. It is intended primarily (only?) for HTML templates. However, webfonts-generator uses it for CSS templates. This causes a number of issues;

svolkomorov commented 5 years ago

var template = handlebars.compile(source, { noEscape: true }) @ webfonts-generator/src/renderCss.js:71 seems to fix unneeded escaping issues for me but I didn't do extensive testing so not sure if that introduces new bugs