1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-04 09:00:06 +01:00

Fix ICE encoding issues.

Fix issue where @@@@ is appearing in generated resumes.
This commit is contained in:
hacksalot 2016-01-01 20:27:46 -05:00
parent e4a549ed30
commit 47553b6def

View File

@ -155,7 +155,7 @@ Implementation of the 'generate' verb for HackMyResume.
console.log = consoleLog;
// Unharden
rezHtml = rezHtml.replace( /@@@@~.+?~@@@@/g, function(val){
rezHtml = rezHtml.replace( /@@@@~.*?~@@@@/gm, function(val){
return MDIN( val.replace( /~@@@@/gm,'' ).replace( /@@@@~/gm,'' ) );
});