├── .gitignore ├── README.md ├── license.md ├── pdfs └── design │ └── alphabet (latin) │ ├── hco-basic-font-proof.pdf │ ├── lowercase (latin).pdf │ ├── small caps (latin).pdf │ └── uppercase (latin).pdf ├── resources └── english dictionary.txt └── text files └── design └── alphabet (latin) ├── lowercase (latin).txt ├── small caps (latin).txt └── uppercase (latin).txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/README.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/license.md -------------------------------------------------------------------------------- /pdfs/design/alphabet (latin)/hco-basic-font-proof.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/pdfs/design/alphabet (latin)/hco-basic-font-proof.pdf -------------------------------------------------------------------------------- /pdfs/design/alphabet (latin)/lowercase (latin).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/pdfs/design/alphabet (latin)/lowercase (latin).pdf -------------------------------------------------------------------------------- /pdfs/design/alphabet (latin)/small caps (latin).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/pdfs/design/alphabet (latin)/small caps (latin).pdf -------------------------------------------------------------------------------- /pdfs/design/alphabet (latin)/uppercase (latin).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/pdfs/design/alphabet (latin)/uppercase (latin).pdf -------------------------------------------------------------------------------- /resources/english dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/resources/english dictionary.txt -------------------------------------------------------------------------------- /text files/design/alphabet (latin)/lowercase (latin).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/text files/design/alphabet (latin)/lowercase (latin).txt -------------------------------------------------------------------------------- /text files/design/alphabet (latin)/small caps (latin).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/text files/design/alphabet (latin)/small caps (latin).txt -------------------------------------------------------------------------------- /text files/design/alphabet (latin)/uppercase (latin).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoeflerco/proofs/HEAD/text files/design/alphabet (latin)/uppercase (latin).txt --------------------------------------------------------------------------------