====== How to disable character replacement ======
===== Default behaviour =====
By default, FlatPress replaces some characters (or character combinations) within your entries and static pages:
* Two hyphens ("--") become an [[https://www.thepunctuationguide.com/en-dash.html|en dash]] ("–"), three ("---") an [[https://www.thepunctuationguide.com/em-dash.html|em dash]] ("—")
* Three dots ("...") become an [[https://www.thepunctuationguide.com/ellipses.html|ellipsis]] ("…")
* Quotations marks become typographic: "text" will become “text”
* Trademark sign: "Text (tm)" is being replaced with "Text ™"
* Multiplication sign: "2x3" is displayed as "2×3"
... and a few more.
===== How to disable =====
If you would like FlatPress __not__ to do these character replacements, just tell it to :)
After the first two lines of your index.php, just add the ''remove_filter()'' call as shown:
===== More details =====
The described replacements take place in the function ''wptexturize()'' in //fp-includes/core/core.wp-formatting.php//. Please refer there for a detailled view into the replacement logic.