mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2025-05-02 20:37:08 +01:00
Don't do html escaping. Fix #157.
This commit is contained in:
3
dist/renderers/handlebars-generator.js
vendored
3
dist/renderers/handlebars-generator.js
vendored
@ -38,7 +38,8 @@ Definition of the HandlebarsGenerator class.
|
||||
try {
|
||||
template = HANDLEBARS.compile(tpl, {
|
||||
strict: false,
|
||||
assumeObjects: false
|
||||
assumeObjects: false,
|
||||
noEscape: true
|
||||
});
|
||||
return template(data);
|
||||
} catch (_error) {
|
||||
|
Reference in New Issue
Block a user