├── .gitignore ├── LICENSE ├── README.md ├── hersheyexample.html ├── hersheytest.js ├── hersheytext.json ├── hersheytext.min.json ├── lib └── hersheytext.js ├── package.json └── svg_fonts ├── EMSAllure.svg ├── EMSElfin.svg ├── EMSFelix.svg ├── EMSNixish.svg ├── EMSNixishItalic.svg ├── EMSOsmotron.svg ├── EMSReadability.svg ├── EMSReadabilityItalic.svg ├── EMSTech.svg ├── HersheyGothEnglish.svg ├── HersheySans1.svg ├── HersheySansMed.svg ├── HersheyScript1.svg ├── HersheyScriptMed.svg ├── HersheySerifBold.svg ├── HersheySerifBoldItalic.svg ├── HersheySerifMed.svg ├── HersheySerifMedItalic.svg └── index.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/README.md -------------------------------------------------------------------------------- /hersheyexample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/hersheyexample.html -------------------------------------------------------------------------------- /hersheytest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/hersheytest.js -------------------------------------------------------------------------------- /hersheytext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/hersheytext.json -------------------------------------------------------------------------------- /hersheytext.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/hersheytext.min.json -------------------------------------------------------------------------------- /lib/hersheytext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/lib/hersheytext.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/package.json -------------------------------------------------------------------------------- /svg_fonts/EMSAllure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/EMSAllure.svg -------------------------------------------------------------------------------- /svg_fonts/EMSElfin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/EMSElfin.svg -------------------------------------------------------------------------------- /svg_fonts/EMSFelix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/EMSFelix.svg -------------------------------------------------------------------------------- /svg_fonts/EMSNixish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/EMSNixish.svg -------------------------------------------------------------------------------- /svg_fonts/EMSNixishItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/EMSNixishItalic.svg -------------------------------------------------------------------------------- /svg_fonts/EMSOsmotron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/EMSOsmotron.svg -------------------------------------------------------------------------------- /svg_fonts/EMSReadability.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/EMSReadability.svg -------------------------------------------------------------------------------- /svg_fonts/EMSReadabilityItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/EMSReadabilityItalic.svg -------------------------------------------------------------------------------- /svg_fonts/EMSTech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/EMSTech.svg -------------------------------------------------------------------------------- /svg_fonts/HersheyGothEnglish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/HersheyGothEnglish.svg -------------------------------------------------------------------------------- /svg_fonts/HersheySans1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/HersheySans1.svg -------------------------------------------------------------------------------- /svg_fonts/HersheySansMed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/HersheySansMed.svg -------------------------------------------------------------------------------- /svg_fonts/HersheyScript1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/HersheyScript1.svg -------------------------------------------------------------------------------- /svg_fonts/HersheyScriptMed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/HersheyScriptMed.svg -------------------------------------------------------------------------------- /svg_fonts/HersheySerifBold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/HersheySerifBold.svg -------------------------------------------------------------------------------- /svg_fonts/HersheySerifBoldItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/HersheySerifBoldItalic.svg -------------------------------------------------------------------------------- /svg_fonts/HersheySerifMed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/HersheySerifMed.svg -------------------------------------------------------------------------------- /svg_fonts/HersheySerifMedItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/HersheySerifMedItalic.svg -------------------------------------------------------------------------------- /svg_fonts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techninja/hersheytextjs/HEAD/svg_fonts/index.json --------------------------------------------------------------------------------