├── .gitignore ├── LICENSE.md ├── README.md ├── bin ├── TestFont-LocalizedForms.otf └── TestFont-LocalizedForms.woff ├── doc ├── LocalizedForms.html ├── LocalizedForms.md └── LocalizedForms.png └── src └── TestFont-LocalizedForms.ufo ├── features.fea ├── fontinfo.plist ├── glyphs ├── A_.glif ├── B_.glif ├── C_.glif ├── D_.glif ├── E_.glif ├── F_.glif ├── G_.glif ├── H_.glif ├── I_.glif ├── J_.glif ├── K_.glif ├── L_.glif ├── M_.glif ├── N_.glif ├── O_.glif ├── P_.glif ├── Q_.glif ├── R_.glif ├── S_.glif ├── T_.glif ├── U_.glif ├── V_.glif ├── W_.glif ├── X_.glif ├── Y_.glif ├── Z_.glif ├── _notdef.glif ├── a.glif ├── arrowright.glif ├── asterisk.glif ├── b.glif ├── backslash.glif ├── braceleft.glif ├── braceright.glif ├── bracketleft.glif ├── bracketright.glif ├── bullet.glif ├── c.glif ├── colon.glif ├── comma.glif ├── contents.plist ├── d.glif ├── e.glif ├── eight.glif ├── ellipsis.glif ├── emdash.glif ├── endash.glif ├── exclam.glif ├── exclamdown.glif ├── f.glif ├── figuredash.glif ├── five.glif ├── four.glif ├── g.glif ├── guillemotleft.glif ├── guillemotright.glif ├── guilsinglleft.glif ├── guilsinglright.glif ├── h.glif ├── hyphen.glif ├── i.glif ├── j.glif ├── k.glif ├── l.glif ├── layerinfo.plist ├── m.glif ├── n.glif ├── nine.glif ├── numbersign.glif ├── o.glif ├── one.glif ├── p.glif ├── parenleft.glif ├── parenright.glif ├── period.glif ├── periodcentered.glif ├── q.glif ├── question.glif ├── questiondown.glif ├── quotedbl.glif ├── quotedblbase.glif ├── quotedblleft.glif ├── quotedblright.glif ├── quoteleft.glif ├── quotereversed.glif ├── quoteright.glif ├── quotesinglbase.glif ├── quotesingle.glif ├── r.glif ├── s.glif ├── semicolon.glif ├── seven.glif ├── six.glif ├── slash.glif ├── smileface.glif ├── space.glif ├── t.glif ├── three.glif ├── two.glif ├── u.glif ├── underscore.glif ├── underscoredbl.glif ├── uni00A_0.glif ├── uni00A_D_.glif ├── uni037E_.glif ├── uni201F_.glif ├── uni2639.glif ├── v.glif ├── w.glif ├── x.glif ├── y.glif ├── z.glif └── zero.glif ├── layercontents.plist ├── lib.plist └── metainfo.plist /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/README.md -------------------------------------------------------------------------------- /bin/TestFont-LocalizedForms.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/bin/TestFont-LocalizedForms.otf -------------------------------------------------------------------------------- /bin/TestFont-LocalizedForms.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/bin/TestFont-LocalizedForms.woff -------------------------------------------------------------------------------- /doc/LocalizedForms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/doc/LocalizedForms.html -------------------------------------------------------------------------------- /doc/LocalizedForms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/doc/LocalizedForms.md -------------------------------------------------------------------------------- /doc/LocalizedForms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/doc/LocalizedForms.png -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/features.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/features.fea -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/fontinfo.plist -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/D_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/E_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/F_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/G_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/G_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/H_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/H_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/I_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/I_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/J_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/K_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/K_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/M_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/M_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/N_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/N_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/P_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/P_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/Q_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/Q_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/R_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/R_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/S_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/S_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/T_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/T_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/U_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/U_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/W_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/W_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/X_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/X_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/Z_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/Z_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/arrowright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/arrowright.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/asterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/asterisk.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/b.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/b.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/backslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/backslash.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/braceleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/braceleft.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/braceright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/braceright.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/bracketleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/bracketleft.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/bracketright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/bracketright.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/bullet.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/bullet.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/c.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/c.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/colon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/colon.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/comma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/comma.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/d.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/d.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/e.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/e.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/eight.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/eight.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/ellipsis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/ellipsis.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/emdash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/emdash.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/endash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/endash.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/exclam.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/exclam.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/exclamdown.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/exclamdown.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/f.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/figuredash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/figuredash.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/five.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/five.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/four.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/four.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/g.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/g.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/guillemotleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/guillemotleft.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/guillemotright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/guillemotright.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/guilsinglleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/guilsinglleft.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/guilsinglright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/guilsinglright.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/h.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/h.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/hyphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/hyphen.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/j.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/j.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/k.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/k.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/l.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/l.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/m.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/m.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/n.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/n.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/nine.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/numbersign.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/numbersign.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/one.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/one.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/p.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/p.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/parenleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/parenleft.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/parenright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/parenright.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/period.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/period.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/periodcentered.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/periodcentered.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/q.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/q.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/question.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/question.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/questiondown.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/questiondown.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/quotedbl.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/quotedblbase.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/quotedblbase.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/quotedblleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/quotedblleft.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/quotedblright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/quotedblright.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/quoteleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/quoteleft.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/quotereversed.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/quotereversed.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/quoteright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/quoteright.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/quotesinglbase.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/quotesinglbase.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/quotesingle.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/quotesingle.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/r.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/r.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/s.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/s.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/semicolon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/semicolon.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/seven.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/seven.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/six.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/six.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/slash.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/smileface.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/smileface.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/t.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/t.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/three.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/three.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/two.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/two.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/u.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/u.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/underscore.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/underscore.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/underscoredbl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/underscoredbl.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/uni00A_0.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/uni00A_0.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/uni00A_D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/uni00A_D_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/uni037E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/uni037E_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/uni201F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/uni201F_.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/uni2639.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/uni2639.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/x.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/x.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/y.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/y.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/z.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/z.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/glyphs/zero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/glyphs/zero.glif -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/layercontents.plist -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/lib.plist -------------------------------------------------------------------------------- /src/TestFont-LocalizedForms.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenType/TestFont/HEAD/src/TestFont-LocalizedForms.ufo/metainfo.plist --------------------------------------------------------------------------------