mirror of
https://github.com/kiliman/operator-mono-lig.git
synced 2026-08-12 02:10:52 +02:00
15 lines
226 B
Batchfile
15 lines
226 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
rem extract all fonts
|
|
for %%d in (.\ligature_source\*.otf) do call :extract_font %%~nd
|
|
exit /b
|
|
|
|
:extract_font
|
|
set lig=%1
|
|
set otf=%lig:Lig=%
|
|
|
|
ttx -f .\ligature_source\%lig%.otf
|
|
node extract.js %lig%
|
|
exit /b
|