local export = {}

function export.show(text)

	if type(text) == "table" then -- called directly from a template
		text = text.args[1]
	end

	text = require("Module:th-utilities").thai_number_sequence(text)

	return text

end

return export