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:
Belleve Invis 2020-05-24 12:17:30 -07:00
parent 0da0a62774
commit 01e167f793
2 changed files with 6 additions and 2 deletions

View file

@ -68,7 +68,7 @@ desc = 'Enable ligation for `++` and further plus-chaining'
[simple.calt-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]
ligGroup = "logic"

View file

@ -153,7 +153,11 @@ function figureOutDefaults(variantsData, gr) {
async function processLigSetCherryPicking() {
const ligData = await parseLigationData();
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) {
md.log(` * \`${gr}\`: ${ligData.cherry[gr].desc}.`);
}