Module:Test

From Industrial-Craft-Wiki
Revision as of 10:58, 18 February 2015 by Chocohead (talk | contribs) (Quick test to see how Lua reacts to it)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

local p = {}

function p.rss( f )
   local args = f
 
   if f == mw.getCurrentFrame() then
      args = f:getParent().args
   end

   return "<nowiki>" .. args[1] .. "/nowiki>"
end

return p