Module:Test

From Industrial-Craft-Wiki
Revision as of 13:38, 18 February 2015 by Chocohead (talk | contribs) (It's very weird...)
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] or "") .. "</nowiki>"
   if args[1] == nil then
      return "Nothing :S"
   end
   if(args[1]:find("#")) then
      return string.match(args[1], '.+#%d+.+')
   else
      return string.sub(args[1], 2, -1)
   end]]

   if args.title ~= nil then
      args.title = "\'\'\'<span class=\'plainlinks\'>" .. args.title .. "</span>\'\'\'"
   else
      args.title = ""
   end
   if args.date ~= nil then
      args.date = ":" .. args.date
   else
      args.date = ""
   end
   return "\'\'\'" .. string.sub(args.title, 25) .. "\'\'\'\n" .. args.date
end

return p