w3c / predefined-counter-styles

Predefined Counter Styles
https://w3c.github.io/predefined-counter-styles/
Other
7 stars 14 forks source link

New counting style proposal: Ideographic counting mark #19

Closed c933103 closed 3 years ago

c933103 commented 6 years ago

copy from https://github.com/w3c/csswg-drafts/issues/2097 Note that relevant characters still have not been encoded into Unicode yet. See https://blogs.adobe.com/CCJKType/2016/01/ideographic-tally-marks.html

@counter-style cjk-tally-mark{
  system: additive;
  additive-symbols: 5 "\1D376", 4 "\1D375", 3 "\1D374", 2 "\1D373", 1 "\1D372";
  /* Relevant chracters still in proposal status in Unicode, see https://blogs.adobe.com/CCJKType/2016/01/ideographic-tally-marks.html */
  suffix: " ";
}
r12a commented 5 years ago

Added for review to the ED at http://w3c.github.io/predefined-counter-styles/#cjk-tally-mark

How should i list your name in the acknowledgements section?

faceless2 commented 5 years ago

The Unicode document referenced by Ken Lunde's blog above is http://www.unicode.org/L2/L2015/15328-tally-marks.pdf - it refers to four tally styles:

"cjk-tally-mark" covers the third, and I don't think that "box tally" and "dot-dash tally" have been encoded in Unicode (yet?). But the first has - for consistency shouldn't it be added as well? It would be

@counter-style tally-mark {
  system: additive;
  additive-symbols: 5 '\1D378', 1 '\1D377'; /* symbols: 5 𝍸, 1 𝍷; */
  suffix: " ";
}

(reference: see https://www.unicode.org/L2/L2016/16065-tally-marks.pdf)

r12a commented 3 years ago

Since we focus on international writing systems, tally-mark seemed a little borderline for this doc, but i have now added it at https://github.com/w3c/predefined-counter-styles/pull/29

Thanks.