├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .init.stamp ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── Makefile ├── OFL.txt ├── README.md ├── documentation ├── DESCRIPTION.en_us.html ├── FragmentMono.png ├── FragmentMonoCharSet.png ├── FragmentMonoCoding.png ├── FragmentMonoSpecimenDocumentation.pdf ├── alternates.png ├── image1.py ├── image2.py ├── images-license.txt ├── javascript.png ├── php.png ├── python.png └── ruby.png ├── fonts ├── otf │ ├── FragmentMono-Italic.otf │ └── FragmentMono-Regular.otf ├── ttf │ ├── FragmentMono-Italic.ttf │ └── FragmentMono-Regular.ttf └── webfonts │ ├── FragmentMono-Italic.woff2 │ └── FragmentMono-Regular.woff2 ├── out ├── badges │ ├── GoogleFonts.json │ ├── OutlineCorrectnessChecks.json │ ├── ShapingChecks.json │ ├── Universal.json │ └── overall.json └── fontbakery │ ├── fontbakery-report.html │ └── fontbakery-report.md ├── renovate.json ├── requirements-test.in ├── requirements-test.txt ├── requirements.in ├── requirements.txt ├── scripts ├── customize.py ├── index.html ├── read-config.py └── update-custom-filter.py └── sources ├── Fragment-Mono.glyphs └── config.yaml /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/.gitignore -------------------------------------------------------------------------------- /.init.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/Makefile -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/README.md -------------------------------------------------------------------------------- /documentation/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /documentation/FragmentMono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/FragmentMono.png -------------------------------------------------------------------------------- /documentation/FragmentMonoCharSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/FragmentMonoCharSet.png -------------------------------------------------------------------------------- /documentation/FragmentMonoCoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/FragmentMonoCoding.png -------------------------------------------------------------------------------- /documentation/FragmentMonoSpecimenDocumentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/FragmentMonoSpecimenDocumentation.pdf -------------------------------------------------------------------------------- /documentation/alternates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/alternates.png -------------------------------------------------------------------------------- /documentation/image1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/image1.py -------------------------------------------------------------------------------- /documentation/image2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/image2.py -------------------------------------------------------------------------------- /documentation/images-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/images-license.txt -------------------------------------------------------------------------------- /documentation/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/javascript.png -------------------------------------------------------------------------------- /documentation/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/php.png -------------------------------------------------------------------------------- /documentation/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/python.png -------------------------------------------------------------------------------- /documentation/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/documentation/ruby.png -------------------------------------------------------------------------------- /fonts/otf/FragmentMono-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/fonts/otf/FragmentMono-Italic.otf -------------------------------------------------------------------------------- /fonts/otf/FragmentMono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/fonts/otf/FragmentMono-Regular.otf -------------------------------------------------------------------------------- /fonts/ttf/FragmentMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/fonts/ttf/FragmentMono-Italic.ttf -------------------------------------------------------------------------------- /fonts/ttf/FragmentMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/fonts/ttf/FragmentMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/webfonts/FragmentMono-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/fonts/webfonts/FragmentMono-Italic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/FragmentMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/fonts/webfonts/FragmentMono-Regular.woff2 -------------------------------------------------------------------------------- /out/badges/GoogleFonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/out/badges/GoogleFonts.json -------------------------------------------------------------------------------- /out/badges/OutlineCorrectnessChecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/out/badges/OutlineCorrectnessChecks.json -------------------------------------------------------------------------------- /out/badges/ShapingChecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/out/badges/ShapingChecks.json -------------------------------------------------------------------------------- /out/badges/Universal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/out/badges/Universal.json -------------------------------------------------------------------------------- /out/badges/overall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/out/badges/overall.json -------------------------------------------------------------------------------- /out/fontbakery/fontbakery-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/out/fontbakery/fontbakery-report.html -------------------------------------------------------------------------------- /out/fontbakery/fontbakery-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/out/fontbakery/fontbakery-report.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements-test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/requirements-test.in -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/customize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/scripts/customize.py -------------------------------------------------------------------------------- /scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/scripts/index.html -------------------------------------------------------------------------------- /scripts/read-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/scripts/read-config.py -------------------------------------------------------------------------------- /scripts/update-custom-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/scripts/update-custom-filter.py -------------------------------------------------------------------------------- /sources/Fragment-Mono.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/sources/Fragment-Mono.glyphs -------------------------------------------------------------------------------- /sources/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiweihuanghuang/fragment-mono/HEAD/sources/config.yaml --------------------------------------------------------------------------------