Module:Test

From ProleWiki, the proletarian encyclopedia
Revision as of 02:27, 4 June 2022 by Forte (talk | contribs) (Testing purposes (string replace))
local p = {}
local pframe = frame:getParent()
function p.test(frame)
	local Quote = pframe.args.quote
	Quote = string.gsub(Quote,"\n","<br>")
	return Quote
end
return p