Difference between revisions of "Module:Test"

From Industrial-Craft-Wiki
Jump to navigation Jump to search
m (Maybe make it shout the output? :D)
m (Hmmmmm, it's quite awkward with the way it orders parsing)
Line 33: Line 33:
function p.get( f )
function p.get( f )
   local rss = f:expandTemplate{ title='User:Chocohead/RSS-Latest'}  
   local rss = f:expandTemplate{ title='User:Chocohead/RSS-Latest'}  
   return string.upper(rss)
   return rss .. "<nowiki>" .. string.sub(rss, 2) .. "</nowiki>"
end
end


return p
return p

Revision as of 18:10, 18 February 2015

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 = "\'\'\'" .. args.title .. "\'\'\'"
   else
      args.title = ""
   end
   if args.date ~= nil then
      args.date = ":" .. args.date
   else
      args.date = ""
   end
   return args.title .. "\n" .. args.date
end

function p.get( f )
   local rss = f:expandTemplate{ title='User:Chocohead/RSS-Latest'} 
   return rss .. "<nowiki>" .. string.sub(rss, 2) .. "</nowiki>"
end

return p