├── .gitignore ├── LICENSE ├── Lib └── featureMan │ ├── familyFeatures.py │ ├── lib │ ├── determineDefaultNumbers.py │ ├── languageTags │ ├── properties.py │ ├── scriptTags │ ├── scripts.py │ └── tags.py │ ├── otCursive.py │ ├── otKern.py │ ├── otLanguages.py │ ├── otLigatureFeatures.py │ ├── otLocalized.py │ ├── otMark.py │ ├── otNumberFeatures.py │ ├── otSingleSubFeatures.py │ └── otSyntax.py ├── README.md ├── setup.py └── todo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/featureMan/familyFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/familyFeatures.py -------------------------------------------------------------------------------- /Lib/featureMan/lib/determineDefaultNumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/lib/determineDefaultNumbers.py -------------------------------------------------------------------------------- /Lib/featureMan/lib/languageTags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/lib/languageTags -------------------------------------------------------------------------------- /Lib/featureMan/lib/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/lib/properties.py -------------------------------------------------------------------------------- /Lib/featureMan/lib/scriptTags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/lib/scriptTags -------------------------------------------------------------------------------- /Lib/featureMan/lib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/lib/scripts.py -------------------------------------------------------------------------------- /Lib/featureMan/lib/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/lib/tags.py -------------------------------------------------------------------------------- /Lib/featureMan/otCursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/otCursive.py -------------------------------------------------------------------------------- /Lib/featureMan/otKern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/otKern.py -------------------------------------------------------------------------------- /Lib/featureMan/otLanguages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/otLanguages.py -------------------------------------------------------------------------------- /Lib/featureMan/otLigatureFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/otLigatureFeatures.py -------------------------------------------------------------------------------- /Lib/featureMan/otLocalized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/otLocalized.py -------------------------------------------------------------------------------- /Lib/featureMan/otMark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/otMark.py -------------------------------------------------------------------------------- /Lib/featureMan/otNumberFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/otNumberFeatures.py -------------------------------------------------------------------------------- /Lib/featureMan/otSingleSubFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/otSingleSubFeatures.py -------------------------------------------------------------------------------- /Lib/featureMan/otSyntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/Lib/featureMan/otSyntax.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/setup.py -------------------------------------------------------------------------------- /todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typoman/featureman/HEAD/todo --------------------------------------------------------------------------------