showdown/src/subParsers/unescapeSpecialChars.js
2015-01-19 14:57:43 +00:00

13 lines
324 B
JavaScript

/**
* Swap back in all the special characters we've hidden.
*/
showdown.subParser('unescapeSpecialChars', function (text) {
'use strict';
text = text.replace(/~E(\d+)E/g, function (wholeMatch, m1) {
var charCodeToReplace = parseInt(m1);
return String.fromCharCode(charCodeToReplace);
});
return text;
});