Module:User:Victar/WikiEditor

This is a private module sandbox of Victar, for their own experimentation. Items in this module may be added and removed at Victar's discretion; do not rely on this module's stability.


local export = {}

function export.convertDesc(content)
	
	content = mw.ustring.gsub(content, "/\b.*\:\s*\{{l\|([^}]*)\}}/g", "{{desc|$1}}")
	
	return content
	
end

return export