├── .github └── workflows │ └── build.yaml ├── .gitignore ├── AUTHORS.txt ├── HISTORY.md ├── Makefile ├── OFL.txt ├── README.md ├── documentation ├── DESCRIPTION.en_us.html ├── changelog │ ├── 20230307.md │ ├── 20230705.md │ ├── 20240822.md │ └── 20240908.md └── images │ ├── markerg-1.png │ ├── markerg-2.png │ ├── markerg-3.png │ ├── markerg-4.png │ ├── markerg-5.png │ ├── markerg-6.png │ ├── markerg-7.png │ └── markerg-8.png ├── fonts ├── gf │ └── LXGWMarkerGothic-Regular.ttf └── ttf │ └── LXGWMarkerGothic-Regular.ttf ├── requirements-test.txt ├── requirements.txt ├── scripts ├── customize.py ├── index.html ├── read-config.py └── update-custom-filter.py └── sources ├── LXGWMarkerGothic-Regular.ufoz ├── config.yaml ├── extract_ufoz.py ├── post.py ├── readme.md └── scripts ├── compress.py └── extract.py /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/HISTORY.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/Makefile -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/README.md -------------------------------------------------------------------------------- /documentation/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /documentation/changelog/20230307.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/changelog/20230307.md -------------------------------------------------------------------------------- /documentation/changelog/20230705.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/changelog/20230705.md -------------------------------------------------------------------------------- /documentation/changelog/20240822.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/changelog/20240822.md -------------------------------------------------------------------------------- /documentation/changelog/20240908.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/changelog/20240908.md -------------------------------------------------------------------------------- /documentation/images/markerg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/images/markerg-1.png -------------------------------------------------------------------------------- /documentation/images/markerg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/images/markerg-2.png -------------------------------------------------------------------------------- /documentation/images/markerg-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/images/markerg-3.png -------------------------------------------------------------------------------- /documentation/images/markerg-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/images/markerg-4.png -------------------------------------------------------------------------------- /documentation/images/markerg-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/images/markerg-5.png -------------------------------------------------------------------------------- /documentation/images/markerg-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/images/markerg-6.png -------------------------------------------------------------------------------- /documentation/images/markerg-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/images/markerg-7.png -------------------------------------------------------------------------------- /documentation/images/markerg-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/documentation/images/markerg-8.png -------------------------------------------------------------------------------- /fonts/gf/LXGWMarkerGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/fonts/gf/LXGWMarkerGothic-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/LXGWMarkerGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/fonts/ttf/LXGWMarkerGothic-Regular.ttf -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/customize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/scripts/customize.py -------------------------------------------------------------------------------- /scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/scripts/index.html -------------------------------------------------------------------------------- /scripts/read-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/scripts/read-config.py -------------------------------------------------------------------------------- /scripts/update-custom-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/scripts/update-custom-filter.py -------------------------------------------------------------------------------- /sources/LXGWMarkerGothic-Regular.ufoz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/sources/LXGWMarkerGothic-Regular.ufoz -------------------------------------------------------------------------------- /sources/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/sources/config.yaml -------------------------------------------------------------------------------- /sources/extract_ufoz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/sources/extract_ufoz.py -------------------------------------------------------------------------------- /sources/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/sources/post.py -------------------------------------------------------------------------------- /sources/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/sources/readme.md -------------------------------------------------------------------------------- /sources/scripts/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/sources/scripts/compress.py -------------------------------------------------------------------------------- /sources/scripts/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwMarkerGothic/HEAD/sources/scripts/extract.py --------------------------------------------------------------------------------