Name: Fix backwards /prog/ 2009-11-16 19:06
document.body.innerHTML = document.body.innerHTML.replace(/\u202B/g, '');Let's see you do that in Lisp.
document.body.innerHTML = document.body.innerHTML.replace(/\u202B/g, '');(set! document.body.innerHTML (document.body.innerHTML.replace (new RegExp (String.fromCharCode #x202B) "g") ""))document.body.innerHTML = document.body.innerHTML.replace(new RegExp(String.from
CharCode(8235), "g"), "");
$document.body.innerHTML = preg_replace("/\u202B/g", '', $document.body.innerHTML);