<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.ce.skimnerphi.net/index.php?action=history&amp;feed=atom&amp;title=Module%3AKeybinding</id>
	<title>Module:Keybinding - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ce.skimnerphi.net/index.php?action=history&amp;feed=atom&amp;title=Module%3AKeybinding"/>
	<link rel="alternate" type="text/html" href="https://wiki.ce.skimnerphi.net/index.php?title=Module:Keybinding&amp;action=history"/>
	<updated>2026-05-24T10:00:20Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://wiki.ce.skimnerphi.net/index.php?title=Module:Keybinding&amp;diff=108&amp;oldid=prev</id>
		<title>Dengr1065: Create basic inline keybinding display module</title>
		<link rel="alternate" type="text/html" href="https://wiki.ce.skimnerphi.net/index.php?title=Module:Keybinding&amp;diff=108&amp;oldid=prev"/>
		<updated>2026-01-29T19:27:44Z</updated>

		<summary type="html">&lt;p&gt;Create basic inline keybinding display module&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- This module is used by Template:Kbd to display an in-game keyboard shortcut&lt;br /&gt;
-- without hardcoding its name or default setting.&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
local keys = mw.loadData(&amp;quot;Module:Keybinding/KnownKeys&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
function p.inline(frame)&lt;br /&gt;
	local id = frame.args.id&lt;br /&gt;
	local key = id and keys[id] or {&lt;br /&gt;
		&amp;quot;Unknown Key ID (&amp;quot; .. tostring(id) .. &amp;quot;)&amp;quot;,&lt;br /&gt;
		&amp;quot;NONE&amp;quot;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	return mw.html.create(&amp;quot;kbd&amp;quot;)&lt;br /&gt;
		:tag(&amp;quot;kbd&amp;quot;)&lt;br /&gt;
		:wikitext(key[2])&lt;br /&gt;
		:done()&lt;br /&gt;
		:wikitext(&amp;quot; &amp;quot; .. key[1])&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Dengr1065</name></author>
	</entry>
</feed>