Module:InfoboxTool

From North Forge
Revision as of 19:37, 2024 April 25 by Ttenbergen (talk | contribs)
Jump to navigation Jump to search

This was set up to generate infoboxes via Scribunto/Lua, but hasn't been developed further.



local p = {}
-- this is a comment
-- more comments
--[[a multi
line comment]]

function p.toolInfobox( frame )
	--if frame.args[1] == nil 
	
	return p.testParameters(frame.args[1])
	
end

function p.testParameters( myParameter )

	-- return "<table class=\"infobox\"> <tr class=\"infobox-header\"> <th colspan=\"2\">[[Tools]]</th> </tr> </table>" 
   return "<table><tr>a</tr><\\table>"
end 

return p