1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
local utfbyte = utf.byte
return {
name = "cc-icons",
version = "1.00",
comment = "Goodies that complement creative commons icons (ctan variant).",
author = "Hans Hagen",
copyright = "ConTeXt development team",
remapping = {
tounicode = true,
unicodes = {
sa = utfbyte("a"),
by = utfbyte("b"),
cc = utfbyte("c"), -- logo (so not the same name)
nd = utfbyte("d"),
nceu = utfbyte("e"),
sampling = utfbyte("m"),
nc = utfbyte("n"),
pd = utfbyte("p"),
remix = utfbyte("r"),
share = utfbyte("s"),
ncjp = utfbyte("y"),
zero = utfbyte("z"),
logo = 0x00A9, -- copyright
},
},
}
|