1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-09-24 11:38:24 +02:00

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
// most monospace fonts (they look the same in code
// 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;
}