dev
Documentation icon Module documentation
[create]

The documentation for this module is missing. Click here to create it.

local p = {}

function p.heeho(frame)
	local content = frame:getParent().args[1] or "Nothing was inputted."
	content = mw.text.trim(content)
	
	return frame:extensionTag{
		name = 'infobox',
		content = frame:extensionTag('navigation', content),
		args = { theme = 'letmewrite' }
	}
end

return p