├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md └── docs ├── glyph-naming.md ├── orthographies.md ├── otl.md ├── references.md ├── tutorial-deva.md ├── tutorial-taml.md └── unicode.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /sandbox/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/README.md -------------------------------------------------------------------------------- /docs/glyph-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/docs/glyph-naming.md -------------------------------------------------------------------------------- /docs/orthographies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/docs/orthographies.md -------------------------------------------------------------------------------- /docs/otl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/docs/otl.md -------------------------------------------------------------------------------- /docs/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/docs/references.md -------------------------------------------------------------------------------- /docs/tutorial-deva.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/docs/tutorial-deva.md -------------------------------------------------------------------------------- /docs/tutorial-taml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/docs/tutorial-taml.md -------------------------------------------------------------------------------- /docs/unicode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typotheque/text-shaping/HEAD/docs/unicode.md --------------------------------------------------------------------------------