without understanding there is no reason

Expandmenu Shrunk


Replace those stupid ‘smart’ quotes

var quoteparse = function() { var elemin = document.getElementById(“quotes_in”); elemin.value = elemin.value.replace(/[\u2018\u2019]/g, “‘”).replace(/[\u201C\u201D]/g, ‘”‘); }
If you do anything that requires text, you will have come across those damn ‘smart’ quotes or curly quotes…
I’m not sure in what universe they help anyone, but I’m sure someone thinks they look nice or some crap like that. They are annoying! Here we can get rid of them from your text and return it to santity:
Click to correct: Fix
oh, right, here’s some stupid quote examples:
“That’s a ‘magic’ blackeye.”
“You’ve wasted ‘my’ time.”

Comments are closed.