Docs: Clarify that when calt-xxxx
selector is applied, the default ligation set will be reset and built with them (#552).
This commit is contained in:
parent
0da0a62774
commit
01e167f793
2 changed files with 6 additions and 2 deletions
|
@ -68,7 +68,7 @@ desc = 'Enable ligation for `++` and further plus-chaining'
|
||||||
|
|
||||||
[simple.calt-kern-dotty]
|
[simple.calt-kern-dotty]
|
||||||
ligGroup = "kern-dotty"
|
ligGroup = "kern-dotty"
|
||||||
desc = 'Move connecting dotty punctuations closer, like for `::`, `:::` and `...`.'
|
desc = 'Move connecting dotty punctuations closer, like for `::`, `:::` and `...`'
|
||||||
|
|
||||||
[simple.calt-logic]
|
[simple.calt-logic]
|
||||||
ligGroup = "logic"
|
ligGroup = "logic"
|
||||||
|
|
|
@ -153,7 +153,11 @@ function figureOutDefaults(variantsData, gr) {
|
||||||
async function processLigSetCherryPicking() {
|
async function processLigSetCherryPicking() {
|
||||||
const ligData = await parseLigationData();
|
const ligData = await parseLigationData();
|
||||||
const md = new MdCol("Section-Cherry-Picking-Ligation-Sets");
|
const md = new MdCol("Section-Cherry-Picking-Ligation-Sets");
|
||||||
md.log(`* Styles for further customizing default (\`calt\`) ligation sets:\n`);
|
md.log(
|
||||||
|
`* Styles for customizing default (\`calt\`) ligation sets. By picking them, ` +
|
||||||
|
`the default ligation set will be cleared and only includes the ligation selected ` +
|
||||||
|
`by the selectors listed below:\n`
|
||||||
|
);
|
||||||
for (const gr in ligData.cherry) {
|
for (const gr in ligData.cherry) {
|
||||||
md.log(` * \`${gr}\`: ${ligData.cherry[gr].desc}.`);
|
md.log(` * \`${gr}\`: ${ligData.cherry[gr].desc}.`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue