Module:Character Appearances: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 12: | Line 12: | ||
} | } | ||
function package. | function package.get_table_for_character(frame) | ||
local character = | local character = frame.args[1] | ||
local result = {} | local result = {} | ||
Revision as of 23:11, 12 December 2023
Documentation for this module may be created at Module:Character Appearances/doc
local package = {}
local appearances = {
VERCE = {
"the dark",
"endless night",
"music and meter and rhyme",
"verses",
"though strangers",
"somehow i knew"
}
}
function package.get_table_for_character(frame)
local character = frame.args[1]
local result = {}
result[#result + 1] = '{| class = "wikitable'
result[#result + 1] = '! [[' .. character .. ']]'
for _, record in pairs(appearances[character]) do
local record_link = 'https://doughbyte.com/art/?show=' .. string.gsub(record, ' ', '_')
result[#result + 1] = '|-'
result[#result + 1] = '| [' .. record_link .. ' ' .. record .. ']'
end
result[#result + 1] = "|}"
return table.concat(result, '\n')
end
return package