Module:Key press

From Illerai

This is an old revision of this page, as edited by illerai>Shayani at 08:30, 11 October 2021 (now in commons). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Module documentation
This documentation is transcluded from Module:Key press/doc. [edit] [history] [purge]

This template should be used when there is no documentation for a Module or Template.


-- <pre>
local p = {}

function p.main(frame)
	local args = frame:getParent().args

	local ret = mw.html.create('span')
				:css('white-space','nowrap')

	local sep = args.sep or '+'
	local keys = {}
	local tblsize = 0

	for i, v in ipairs(args) do
		tblsize = i
		table.insert(keys,v)
	end

	for i, v in ipairs(keys) do
		ret	:tag('kbd')
				:addClass('keypress')
				:wikitext(v)
			:done()

		if i < tblsize then
			ret:wikitext(sep)
		end
	end

	return tostring(ret)
end

return p