Support slope-dependent digit form control (#724).

This commit is contained in:
be5invis 2020-11-12 03:47:42 -08:00
parent fa150fba6b
commit 1358f914a5
10 changed files with 32 additions and 19 deletions

View file

@ -71,6 +71,9 @@ async function processCv() {
const headerPath = path.resolve(__dirname, "fragments/description-cheery-picking-styles.md");
md.log(await fs.readFile(headerPath, "utf-8"));
const cvDigitFormPath = path.resolve(__dirname, "fragments/special-variant-digit-form.md");
md.log(await fs.readFile(cvDigitFormPath, "utf-8"));
for (const gr of variantsData.primes) {
const sampleText = gr.descSampleText
.map(c => (c === "`" ? "`` ` ``" : `\`${c}\``))