Module:SandboxShortCode

From PKC
Revision as of 06:48, 11 January 2022 by Benkoo (talk | contribs)
Jump to navigation Jump to search

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

-- aString Some examples for punctuation:<, >, \\ // ' "
function p.greek_letter()
	cf = mw.getCurrentFrame()
	-- aString = "<math>\\" .. mw.allToString(cf.args[1]) .. "</math>"
	str = mw.getCurrentFrame().args[1]
	aString = cf:preprocess("<math>\\"..str.."</math>")
	return aString
end