Template:Key

From Valve Developer Community
Jump to: navigation, search
Curly brackets white.pngTemplate Documentation
Icon-translate.png
View
Edit
Page history

Documentation

This is the {{key}} template, which can be used to illustrate keystrokes. This template also illustrate mouse buttons aswell.

Example:

{{key|A}} produces A
{{key|~}} produces ~

Keystroke combinations

To illustrate keystroke combinations, just use extra parameters:

{{key|Alt|P}} produces Alt+P
{{key|Ctrl|Alt|Del}} produces Ctrl+Alt+Del

This template currently handles up to 5 key name parameters.

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:

{{key|Ctrl}} + {{key|Alt}} + {{key|Del}} produces Ctrl + Alt + Del

On the other hand, to illustrate Windows Alt codes you might want to use separate templates with no intervening punctuation or space. In most Windows systems in North America and Western Europe, for example, the plus-minus sign (±) can be entered by holding down the Alt key while typing 0177 (with the numeric keypad). This could be illustrated like this:

{{key|Alt|0}}{{key|1}}{{key|7}}{{key|7}} produces Alt+0177

Wikilinks

If there is an article about the key you can wikilink the key's name like any other wiki text. Like this:

{{key|[[Wikipedia:Alt key|Alt]]}} produces Alt

Wiki characters

Some wiki markup character, like the Pipe symbol, the Semicolon and the Equals sign, need to be entered using the {{!}}, {{

}} and {{=}} templates
{{key|{{!}}}} produces |
{{key|{{;}}}} produces ;
{{key|{{=}}}} produces =

Key symbols

Some key names have a fitting unicode character. This template automatically adds such "icons" to the following key names:

{{key|Caps Lock}} produces Caps Lock
{{key|Shift}} produces Shift
{{key|Enter}} produces Enter
{{key|Tab}} produces Tab
{{key|Backspace}} produces ← Backspace
{{key|Cmd}} produces Cmd
{{key|Opt}} produces Opt
{{key|Up}} produces
{{key|Down}} produces
{{key|Left}} produces
{{key|Right}} produces

There are no characters for the Windows key and Menu key. So this template shows approximate characters for them in the following way:

{{key|Win}} produces Win
{{key|Menu}} produces Menu

Mouse icons

{{key|LMB}} or {{key|MOUSE1}} produces LMB
{{key|RMB}} or {{key|MOUSE2}} produces RMB
{{key|MMB}} or {{key|MOUSE3}} produces MMB
{{key|MOUSE4}} produces MOUSE4
{{key|MOUSE5}} produces MOUSE4

Technical details

This template calls {{key/core}}, which holds the code that otherwise would be repeated several times in {{key}}, thus simplifying the code.