Module:Main Page RSS

From Industrial-Craft-Wiki
Revision as of 22:08, 19 February 2015 by Chocohead (talk | contribs) (Made module for the main page's RSS feed)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Main Page RSS/doc

local p = {}

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

   if args.title ~= nil then
      args.title = "\'\'\'" .. args.title .. "\'\'\'"
   else
      args.title = "f:expandTemplate{ title= 'Template:Version²‎'} "
   end

   return args.title
end

return p