├── .gitignore ├── .gitmodules ├── .jshintignore ├── .jshintrc ├── Makefile ├── README.md ├── bin ├── font-check.js ├── font-dump.js ├── font_merge.py ├── font_mkconfig.py ├── font_remap.py ├── font_transform.py ├── fontbuild.py ├── fontconvert.py ├── fontdemo.py └── tpl-render.js ├── example ├── config.yml.example └── merge.yml.example ├── lib └── font-dump-phantom.js ├── package.json ├── support ├── README.md └── ttf2eot │ ├── .gitignore │ ├── ChangeLog │ ├── Makefile │ ├── OpenTypeUtilities.cpp │ ├── OpenTypeUtilities.h │ ├── README │ └── ttf2eot.cpp └── vendor ├── jquery-1.8.2.min.js └── raphael.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | doc/ 3 | node_modules/ 4 | tmp/ 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/.jshintrc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/README.md -------------------------------------------------------------------------------- /bin/font-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/font-check.js -------------------------------------------------------------------------------- /bin/font-dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/font-dump.js -------------------------------------------------------------------------------- /bin/font_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/font_merge.py -------------------------------------------------------------------------------- /bin/font_mkconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/font_mkconfig.py -------------------------------------------------------------------------------- /bin/font_remap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/font_remap.py -------------------------------------------------------------------------------- /bin/font_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/font_transform.py -------------------------------------------------------------------------------- /bin/fontbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/fontbuild.py -------------------------------------------------------------------------------- /bin/fontconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/fontconvert.py -------------------------------------------------------------------------------- /bin/fontdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/fontdemo.py -------------------------------------------------------------------------------- /bin/tpl-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/bin/tpl-render.js -------------------------------------------------------------------------------- /example/config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/example/config.yml.example -------------------------------------------------------------------------------- /example/merge.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/example/merge.yml.example -------------------------------------------------------------------------------- /lib/font-dump-phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/lib/font-dump-phantom.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/package.json -------------------------------------------------------------------------------- /support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/support/README.md -------------------------------------------------------------------------------- /support/ttf2eot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/support/ttf2eot/.gitignore -------------------------------------------------------------------------------- /support/ttf2eot/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/support/ttf2eot/ChangeLog -------------------------------------------------------------------------------- /support/ttf2eot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/support/ttf2eot/Makefile -------------------------------------------------------------------------------- /support/ttf2eot/OpenTypeUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/support/ttf2eot/OpenTypeUtilities.cpp -------------------------------------------------------------------------------- /support/ttf2eot/OpenTypeUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/support/ttf2eot/OpenTypeUtilities.h -------------------------------------------------------------------------------- /support/ttf2eot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/support/ttf2eot/README -------------------------------------------------------------------------------- /support/ttf2eot/ttf2eot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/support/ttf2eot/ttf2eot.cpp -------------------------------------------------------------------------------- /vendor/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/vendor/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /vendor/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/font-builder/HEAD/vendor/raphael.js --------------------------------------------------------------------------------