Module:Convert

Revision as of 13:14, 26 August 2012 by w>Uncle G (Started module.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Convert/doc

--require "mw.text"
--require "mw.page"

local p = {}

-- This is the top-level function called by {{convert}}.
function p.main(frame, config, args)
    local pframe = frame:getParent()
    local args = pframe.args -- the arguments passed TO the {{convert}} template, in the wikitext that instantiates the template
    local config = frame.args -- the arguments passed BY the {{convert}} template, in the wikitext of the template itself
    error ("Module:Convert is not implemented")
    return ""    
end

return p