├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── DESCRIPTION.en_us.html ├── OFL.txt ├── README.md ├── documentation ├── BRIEF.md ├── DESCRIPTION.en_us.html ├── Eczar-specimen.pdf ├── Eczar-specimen_1.svg ├── Eczar-specimen_2.svg ├── FONTLOG.md ├── README.md └── tests │ ├── 00-Character-set.idml │ ├── 01-Sanskrit-text.idml │ ├── 02-Hindi-text.idml │ ├── 03-CV-combinations.idml │ ├── 04-Shape-relation.idml │ ├── DevanagariMatraITest.html │ └── DevanagariShapingTest.html ├── release └── variable │ └── Eczar[wght].ttf └── sources ├── Eczar.glyphs └── builder.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/README.md -------------------------------------------------------------------------------- /documentation/BRIEF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/BRIEF.md -------------------------------------------------------------------------------- /documentation/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /documentation/Eczar-specimen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/Eczar-specimen.pdf -------------------------------------------------------------------------------- /documentation/Eczar-specimen_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/Eczar-specimen_1.svg -------------------------------------------------------------------------------- /documentation/Eczar-specimen_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/Eczar-specimen_2.svg -------------------------------------------------------------------------------- /documentation/FONTLOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/FONTLOG.md -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/tests/00-Character-set.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/tests/00-Character-set.idml -------------------------------------------------------------------------------- /documentation/tests/01-Sanskrit-text.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/tests/01-Sanskrit-text.idml -------------------------------------------------------------------------------- /documentation/tests/02-Hindi-text.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/tests/02-Hindi-text.idml -------------------------------------------------------------------------------- /documentation/tests/03-CV-combinations.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/tests/03-CV-combinations.idml -------------------------------------------------------------------------------- /documentation/tests/04-Shape-relation.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/tests/04-Shape-relation.idml -------------------------------------------------------------------------------- /documentation/tests/DevanagariMatraITest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/tests/DevanagariMatraITest.html -------------------------------------------------------------------------------- /documentation/tests/DevanagariShapingTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/documentation/tests/DevanagariShapingTest.html -------------------------------------------------------------------------------- /release/variable/Eczar[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/release/variable/Eczar[wght].ttf -------------------------------------------------------------------------------- /sources/Eczar.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/sources/Eczar.glyphs -------------------------------------------------------------------------------- /sources/builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosettatype/eczar/HEAD/sources/builder.yaml --------------------------------------------------------------------------------