mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
Fix ICE encoding issues.
Fix issue where @@@@ is appearing in generated resumes.
This commit is contained in:
parent
e4a549ed30
commit
47553b6def
@ -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,'' ) );
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user