Difference between revisions of "Module:HonorTabs"

From Pathfinder Wiki
(Created page with "local p = {} function p.hello( frame ) return "Hello, world!" end return p")
 
Line 4: Line 4:
 
return "Hello, world!"
 
return "Hello, world!"
 
end
 
end
 +
 +
function p.getLangSuffix( frame )
 +
return frame:expandTemplate{ title = 'GetLangSuffix' }
 +
end
 +
  
 
return p
 
return p

Revision as of 21:42, 25 April 2021

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

local p = {}

function p.hello( frame )
	return "Hello, world!"
end

function p.getLangSuffix( frame )
	return frame:expandTemplate{ title = 'GetLangSuffix' }
end


return p