Module:Tags/data
本模組提供標籤名稱與對應顏色或字型樣式的對照資料,供Module:Tags用於格式轉換。
--- 將 <code><標籤></code> 對應到指定顏色或字型的 <span> 標籤所使用的資料。
-- @file {table} tags_data
--- 一組顏色標籤名稱,這些名稱會對應到站點 CSS 中的 <code>data-color</code> 選擇器。
-- @property {table} tags_data.colors
--- 一組字型標籤名稱,這些名稱會對應到站點 CSS 中的 <code>data-font</code> 選擇器。
-- @property {table} tags_data.fonts
return {
colors = {
['red'] = true,
['orange'] = true,
['yellow'] = true,
['green'] = true,
['cyan'] = true,
['aqua'] = true,
['blue'] = true,
['purple'] = true
},
fonts = {
['dt'] = true,
['papyrus'] = true,
['sans'] = true
},
other= {
['nojs'] = true
},
}