Difference between revisions of "Module:SandboxShortCode"

From PKC
Jump to navigation Jump to search
Line 1: Line 1:
-- aString = "<math>\\" .. mw.allToString(cf.args[1]) .. "</math>"
-- aString Some examples for punctuation:<, >, \\ // ' "
function p.greek_letter()
function p.greek_letter()
cf = mw.getCurrentFrame()
cf = mw.getCurrentFrame()

Revision as of 06:48, 11 January 2022

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