-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
33 lines (31 loc) · 964 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import textr from 'textr';
import apostrophes from 'typographic-apostrophes';
import quotes from 'typographic-quotes';
import apostrophesForPlurals from 'typographic-apostrophes-for-possessive-plurals';
import arrows from 'typographic-arrows';
import copyright from 'typographic-copyright';
import currency from 'typographic-currency';
import ellipses from 'typographic-ellipses';
import emDashes from 'typographic-em-dashes';
import enDashes from 'typographic-en-dashes';
import mathSymbols from 'typographic-math-symbols';
import registeredTrademark from 'typographic-registered-trademark';
import singleSpaces from 'typographic-single-spaces';
import trademark from 'typographic-trademark';
const base = textr()
.use(
apostrophes,
quotes,
apostrophesForPlurals,
arrows,
copyright,
currency,
ellipses,
emDashes,
enDashes,
mathSymbols,
registeredTrademark,
singleSpaces,
trademark
);
export default base;