Module:TA4TK:myTest

From MaRDI portal
Revision as of 14:16, 3 January 2025 by Shehu (talk | contribs)

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

-- Main table to hold all functions

local p = {}

p.hello = function( frame )
	local str = "Hello World!"
	return str
end

p.hello_math = function( frame )
	local formula = "\\frac{a}{b}"
	-- Ensure the string isn't misinterpreted
	return formula
	--return mw.text.nowiki(formula) 
end

return p