├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── FONTLOG.txt ├── Makefile ├── OFL.txt ├── README.md ├── XITS-Bold.otf ├── XITS-BoldItalic.otf ├── XITS-Italic.otf ├── XITS-Regular.otf ├── XITSMath-Bold.otf ├── XITSMath-Regular.otf ├── requirements.txt ├── sources ├── XITS-Bold.fea ├── XITS-Bold.sfd ├── XITS-BoldItalic.fea ├── XITS-BoldItalic.sfd ├── XITS-Italic.fea ├── XITS-Italic.sfd ├── XITS-Regular.fea ├── XITS-Regular.sfd ├── XITSMath-Bold.fea ├── XITSMath-Bold.sfd ├── XITSMath-Regular.fea ├── XITSMath-Regular.sfd ├── altonum.fea ├── frac.fea ├── langsys.fea ├── locl.fea ├── numrdnom.fea ├── smallcaps.fea └── xits.fea └── tools ├── copy-math-from-amiri.py ├── makefnt.py ├── makeweb.py └── sfdnormalize.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FONTLOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/FONTLOG.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/Makefile -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/README.md -------------------------------------------------------------------------------- /XITS-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/XITS-Bold.otf -------------------------------------------------------------------------------- /XITS-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/XITS-BoldItalic.otf -------------------------------------------------------------------------------- /XITS-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/XITS-Italic.otf -------------------------------------------------------------------------------- /XITS-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/XITS-Regular.otf -------------------------------------------------------------------------------- /XITSMath-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/XITSMath-Bold.otf -------------------------------------------------------------------------------- /XITSMath-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/XITSMath-Regular.otf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fonttools[ufo,lxml]==3.44.0 2 | -------------------------------------------------------------------------------- /sources/XITS-Bold.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITS-Bold.fea -------------------------------------------------------------------------------- /sources/XITS-Bold.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITS-Bold.sfd -------------------------------------------------------------------------------- /sources/XITS-BoldItalic.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITS-BoldItalic.fea -------------------------------------------------------------------------------- /sources/XITS-BoldItalic.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITS-BoldItalic.sfd -------------------------------------------------------------------------------- /sources/XITS-Italic.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITS-Italic.fea -------------------------------------------------------------------------------- /sources/XITS-Italic.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITS-Italic.sfd -------------------------------------------------------------------------------- /sources/XITS-Regular.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITS-Regular.fea -------------------------------------------------------------------------------- /sources/XITS-Regular.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITS-Regular.sfd -------------------------------------------------------------------------------- /sources/XITSMath-Bold.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITSMath-Bold.fea -------------------------------------------------------------------------------- /sources/XITSMath-Bold.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITSMath-Bold.sfd -------------------------------------------------------------------------------- /sources/XITSMath-Regular.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITSMath-Regular.fea -------------------------------------------------------------------------------- /sources/XITSMath-Regular.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/XITSMath-Regular.sfd -------------------------------------------------------------------------------- /sources/altonum.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/altonum.fea -------------------------------------------------------------------------------- /sources/frac.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/frac.fea -------------------------------------------------------------------------------- /sources/langsys.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/langsys.fea -------------------------------------------------------------------------------- /sources/locl.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/locl.fea -------------------------------------------------------------------------------- /sources/numrdnom.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/numrdnom.fea -------------------------------------------------------------------------------- /sources/smallcaps.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/smallcaps.fea -------------------------------------------------------------------------------- /sources/xits.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/sources/xits.fea -------------------------------------------------------------------------------- /tools/copy-math-from-amiri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/tools/copy-math-from-amiri.py -------------------------------------------------------------------------------- /tools/makefnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/tools/makefnt.py -------------------------------------------------------------------------------- /tools/makeweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/tools/makeweb.py -------------------------------------------------------------------------------- /tools/sfdnormalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliftype/xits/HEAD/tools/sfdnormalize.py --------------------------------------------------------------------------------