Em dash and en dash mix-up. Issue #88

This commit is contained in:
Michael Save 2013-01-24 03:37:15 +11:00
parent a44e0571bc
commit b086e47cfc

View File

@ -1364,8 +1364,8 @@ function unicodify($body) {
// En and em- dashes are rendered exactly the same in // En and em- dashes are rendered exactly the same in
// most monospace fonts (they look the same in code // most monospace fonts (they look the same in code
// editors). // editors).
$body = str_replace('---', '–', $body); // em dash $body = str_replace('--', '–', $body); // en dash
$body = str_replace('--', '—', $body); // en dash $body = str_replace('---', '—', $body); // em dash
return $body; return $body;
} }