Module:Tags/data
Data for mapping <tag>s into their respective spans with specified colors or fonts.
tags_data.colors(member; table)- A set of color tag names that correspond with color classes in sitewide CSS.
tags_data.fonts(member; table)- A set of font tag names that correspond font classes in sitewide CSS.
--- Data for mapping <code><tag></code>s into their respective spans with
-- specified colors or fonts.
-- @file {table} tags_data
--- A set of color tag names that correspond with color classes in sitewide CSS.
-- @property {table} tags_data.colors
--- A set of font tag names that correspond font classes in sitewide CSS.
-- @property {table} tags_data.fonts
return {
colors = {
['red'] = true,
['orange'] = true,
['yellow'] = true,
['green'] = true,
['cyan'] = true,
['blue'] = true,
['purple'] = true,
['lightgreen'] = true,
['violet'] = true,
['lightyellow'] = true
},
fonts = {
['dt'] = true,
['papyrus'] = true,
['sans'] = true
}
}