0.1.1 • Published 8 years ago
textlint-rule-real-symbols v0.1.1
textlint-rule-real-symbols 
Use real symbols, not alphabetic substitutes
Textlint rule to check and fix real symbols.
Install
npm install --save textlint-rule-real-symbolsUsage
textlint --fix --rule real-symbols README.mdOr enable the rule in your .textlintrc:
{
"rules": {
"real-symbols": true
}
}Read more about configuring textlint.
Examples
3 x 2 = 6→3 × 2 = 63 - 2 = 1→3 − 2 = 13 >= 2→3 ≥ 21 =< 2→1 ≤ 299999 >> 1→99999 ≫ 11 << 99999→1 ≪ 9999910 +- 1→10 ± 110 -+ 1→10 ∓ 1a <-> b→a ↔ ba <=> b→a ⇔ ba <- b→a ← ba -> b→a → ba <= b→a ⇐ ba => b→a ⇒ b(c) 2015 Foo→© 2015 FooFoo (r)→Foo ®Foo(tm)→Foo™Foo bar baz...→Foo bar baz…Foo -- bar→Foo — bar2009-2015→2009–2015
License
MIT