forked from leftypol/leftypol
Em dash and en dash mix-up. Issue #88
This commit is contained in:
parent
a44e0571bc
commit
b086e47cfc
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue