Template:Keypress/doc
This is a documentation subpage for Template:Keypress (see that page for the template itself). It contains usage information, categories and other content that is not part of the original template page |
This is the {{keypress}} template.
It can be used to illustrate keystrokes.
Example:
{{keypress|A}}
produces A
To illustrate keystroke combinations, just use extra parameters:
{{keypress|Alt|P}}
produces Alt+P{{keypress|Ctrl|Alt|Del}}
produces Ctrl+Alt+Del
Key symbols
Some key names have a fitting unicode character. This template automatically adds such "icons" to the following key names:
{{keypress|Shift}}
produces ⇧ Shift{{keypress|Enter}}
produces ↵ Enter{{keypress|Cmd}}
produces ⌘ Cmd{{keypress|Opt}}
produces ⌥ Opt{{keypress|Tab}}
produces Tab ⇆{{keypress|Backspace}}
produces ← Backspace
This template can also replace arrow key names with symbols. Here is how the arrow keys can be made:
{{keypress|Left}}
produces ←{{keypress|Up}}
produces ↑{{keypress|Down}}
produces ↓{{keypress|Right}}
produces →
There are no characters for the Windows key and menu key. Use plain text, like this:
{{keypress|Win}}
or{{keypress|Win key}}
produces Win or Win key{{keypress|Menu}}
produces Menu
Technical details
When you feed several key names to this template, it adds a "+" with no spaces around. This means it won't line wrap. But when you show key combinations for instance in a table then that might cause too wide items. Then instead manually build the key combination with spaces around the "+" so it can line wrap. Like this:
{{keypress|Ctrl}} + {{keypress|Alt}} + {{keypress|Del}}
produces Ctrl + Alt + Del
This template currently handles up to 5 key name parameters. If it gets too many key name parameters it reports the page into Category:WiiBrew keypress template parameter needs fixing. This means we can easily find those pages and fix them, or we can discover if we need to make this template take more parameters.
This template calls {{keypress/core}}, which holds the code that otherwise would be repeated several times in {{keypress}}, thus simplifying the code.