Annotate fonts with ruby (pinyin/romaji) and produce modified TTF/WOFF2 outputs.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update docs

lem.my ae9f0e75 c2dc9b32

verified
+2 -2
+1 -1
README.md
··· 20 20 - `--out, -o <path>`: Output directory (required) 21 21 - `--ruby <pinyin|romaji>`: Which annotation renderer to use (requires building with the corresponding feature) 22 22 - `--font <path>`: Separate font file to use for ruby characters 23 - - `--subset`: Subset output font to contain only annotation characters 23 + - `--subset`: Subset output font to contain only annotated characters 24 24 - `--split`: When input is a TTC, write each font as a separate TTF file instead of rebuilding a TTC 25 25 - `--woff2`: Convert outputs to WOFF2 26 26 - `--position <top|bottom|leftdown|leftup|rightdown|rightup>`: Where to place ruby annotations relative to the base glyph. Valid values:
+1 -1
src/main.rs
··· 30 30 #[facet(args::named)] 31 31 font: Option<PathBuf>, 32 32 33 - /// Subset the font to include only annotation characters. 33 + /// Subset the font to include only annotated characters. 34 34 #[facet(args::named, default = false)] 35 35 subset: bool, 36 36