Module:Good article topics
From Wikipedia, the free encyclopedia
Page Module:Documentation/styles.css has no content.
File:Test Template Info-Icon - Version (2).svg Module documentation[view] [edit] [history] [purge]
- REDIRECT Template:Template rating
Template:Redirect category shell
Page Module:Message box/ombox.css has no content.| File:Lua-Logo.svg | This module depends on the following other modules: |
This module implements Template:GA/Topic; please see the template page for documentation.
-- This module implements {{GA/Topic}}.
local p = {}
function p.main(frame)
local topic = frame:getParent().args[1]
if not topic then
return ''
end
topic = topic:match('^%s*(.-)%s*$') -- Trim whitespace
local ret
if topic ~= '' then
ret = p._main(topic)
end
ret = ret or ''
return ret
end
function p._main(topic)
topic = topic:lower()
local data = mw.loadData('Module:Good article topics/data')
return data[topic]
end
return p