Template:Xt/doc: Difference between revisions
meta>Geekdiva Copy & readability edits turned into a slight restructuring. Added example code for easy copy and paste to encourage use. Since this page is used by a group of templates, added: {{distinguish|Category:Text color templates}}. |
meta>Mr. Guye →Using example-formatting templates in general: The error is to deterr doing just that |
||
Line 12: | Line 12: | ||
The [[:Category:Example-formatting templates|category of example-formatting templates]], like the one above, is used frequently in non-[[Wikipedia:Mainspace|mainspace]] general help pages such as [[Wikipedia:Manual of Style|Wikipedia:Manual of Style (MOS)]] when ''inline'' typeface changes are needed. | The [[:Category:Example-formatting templates|category of example-formatting templates]], like the one above, is used frequently in non-[[Wikipedia:Mainspace|mainspace]] general help pages such as [[Wikipedia:Manual of Style|Wikipedia:Manual of Style (MOS)]] when ''inline'' typeface changes are needed. | ||
{{strong|This family of templates ''cannot'' be used in mainspace (the article [[Wikipedia:Namespace|namespace]]).}} | {{strong|This family of templates ''cannot'' be used in mainspace (the article [[Wikipedia:Namespace|namespace]]).}} | ||
{{strong|Also, this family of templates are ''not'' for use as [[Help:Wikitext|wikitext markup]] for [[Wikipedia:Quotations|quotations]] on [[Wikipedia:Talk pages|talk pages]]}}; use {{tlx|tq}} instead. | {{strong|Also, this family of templates are ''not'' for use as [[Help:Wikitext|wikitext markup]] for [[Wikipedia:Quotations|quotations]] on [[Wikipedia:Talk pages|talk pages]]}}; use {{tlx|tq}} instead. |
Revision as of 02:48, 27 August 2018
This is a documentation subpage for Template:xt, Template:bxt, Template:mxt, Template:xtd, Template:bxtd, Template:!xt, Template:!bxt, and Template:!mxt. It may contain usage information, categories and other content that is not part of the original template page. |
Using this template
Use template {{xt}}
(the name of which stands for "example text") in order to format body-text examples of style, especially when using quotation marks or italics could be confusing. This changes the given text in the first parameter to the serif typeface and green color.
Copy one of the following to use this template with one or two parameters. However, note that there is important information in § Parameters and the other sections below that you should be familiar with first.
{{xt|1=text}}
{{xt|1=text|title=tooltip text}}
Using example-formatting templates in general
The category of example-formatting templates, like the one above, is used frequently in non-mainspace general help pages such as Wikipedia:Manual of Style (MOS) when inline typeface changes are needed.
This family of templates cannot be used in mainspace (the article namespace).
Also, this family of templates are not for use as wikitext markup for quotations on talk pages; use {{tq}}
instead.
For cases where the serif typeface is not desirable (e.g. in blocks of computer code), use {{bxt}}
, which substitutes boldfacing, or {{mxt}}
, which substitutes a mono-spaced font. For style examples that break to their own line (e.g. paragraphs), use {{xt2}}
.
For examples of bad/wrong style, in red, use {{!xt}}
, {{!bxt}}
, {{!mxt}}
, or {{!xt2}}
, respectively.
The {{xtd}}
template exists for deprecated examples. Its alias {{xtg}}
(for "grey") can be used to indicate uncertain, unavailable, disabled, lorem, etc., examples without implying deprecation. The bold, sans-serif equivalent is {{bxtd}}
(and {{bxtg}}
alias). The mono-spaced equivalent is {{mxtd}}
.
The {{xtn}}
template is for neutral examples, and has no color change, but is otherwise identical to {{xt}}
. It can be used with {{xt}}
and {{!xt}}
to indicate usage that is neither advised nor advised against or deprecated. The bold, sans-serif equivalent is {{bxtn}}
.
Parameters
|text here
or|1=text here
– The text to which to apply the markup. As with all templates, when the text has any equals characters ("="), explicitly prefix the text with|1=
or the template will break.|title=tooltip text here
– Takes text, which cannot be marked up in any way, and displays it as a pop-up "tooltip" (in most browsers) when the cursor hovers over the span
Accessibility
The accompanying change in typeface to a serif or mono-spaced type style (as in example text) is to make it fully accessible for those with color blindness.
Keep accessibility more broadly in mind, and never construct examples such that a blind person, who may not be able to see the coloration, boldfacing, or monospace font change, cannot understand the examples. Especially indicate, with terms like "not", "don't", "wrong:", etc., that a negative example is a negative one, or with "deprecated", "avoid", etc., that deprecated material is deprecated.
Examples of {{xt}}
syntax and result
- What you write
...for example, {{xt|1=''T'' = 293.15 K}}, but not {{!xt|1=''m''=5.4kg}}.
- What you get
- ...for example, T = 293.15 K, but not m=5.4kg.
What you type | What you get |
---|---|
this is an {{xt|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{!xt|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{xtn|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{xtd|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{mxt|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{!mxt|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{mxtn|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{mxtd|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{bxt|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{!bxt|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{bxtn|inline typeface change}} for comparison | this is an inline typeface change for comparison |
this is an {{bxtd|inline typeface change}} for comparison | this is an inline typeface change for comparison |
User CSS for a monospaced coding font
Have monospaced templates in this group – and your editing window – use your preferred monospaced font:
|
---|
You can consistently use a monospaced font with well-designed characters for coding (e.g., to distinguish clearly between Add something like one of the code snippets below into your Special:MyPage/common.css page, replacing "Roboto Mono" with whatever your preferred coding font is (Roboto Mono was picked as a freely-available coding font for this example). If you don't want to manually add this code to your CSS page but would rather This code will do the following:
If you know of an additional class to add here, please update this page or mention it on the talk page. Horizontal style <syntaxhighlight lang="css">/* Use my font, when available, for code */ code, pre, samp, kbd, tt, .example-mono, .userlinks-username, .monospaced, .keyboard-key, .button, .plaincode { font-family: "Roboto Mono", monospace !important; } /* Make some of the editable stuff monospaced */
Vertical style <syntaxhighlight lang="css">/* Use my font, when available, for code */ code, pre, samp, kbd, tt, .example-mono, .userlinks-username, .monospaced, .keyboard-key, .button .plaincode { font-family: "Roboto Mono", monospace !important; } /* Make some of the editable stuff monospaced */
font-family: "Roboto Mono", monospace !important; }</syntaxhighlight> Cleanup efforts If you'd like to help clean up instances of the <syntaxhighlight lang="css">/* Flag bad code for cleanup */ tt { color: DarkRed; background: Pink; }</syntaxhighlight> You can also do this with |
See also
{{xt}}
inline positive example text, in green, with serif font{{xt2}}
same as{{xt}}
but for blocks of text{{bxt}}
same as{{xt}}
but uses bold instead of serif font{{mxt}}
same as{{xt}}
but uses mono-spaced font (especially useful in source code)
{{!xt}}
inline negative example text, in red, with serif font{{!xt2}}
same as{{!xt}}
but for blocks (i.e., same as{{xt2}}
but red){{!bxt}}
same as{{!xt}}
but uses boldface{{!mxt}}
same as{{!xt}}
but uses mono-spaced font; used for incorrect or strongly deprecated code/output/input examples and should usually be wrapped in<code>
,<samp>
, or<kbd>
as appropriate; see also{{dc}}
and its variants below{{dcr}}
inlinestrongly deprecated or deleted material;{{dc2}}
variant hasstrikethrough(they both use the<del>
element, and do not add monospace font on their own; can be used in mainspace (articles), and where necessary wrapped in<code>
,<samp>
, or<kbd>
)
{{xtd}}
inline deprecated (or uncertain, unavailable, lorem, etc.) example text, in grey{{bxtd}}
same as{{xtd}}
but uses boldface{{mxtd}}
same as{{xtd}}
but uses mono-spaced font{{dc}}
inlinedeprecated or deleted material; (uses the<del>
element, and does not add monospace font on it own; can be used in mainspace (articles), and where necessary wrapped in<code>
,<samp>
, or<kbd>
)
{{xtn}}
inline neutral example text, with no color change, when none of the above applies; used for "permissible" examples neither favored nor deprecated{{bxtn}}
same as{{xtn}}
but uses boldface; it still applies a CSS class, so it's not simply boldfacing{{mxtn}}
same as{{xtn}}
but uses mono-spaced font; this is a good template to use when the shaded box formatting of<code>...</code>
might be undesirable, or the semantics of it is incorrect in the context
{{strongbad}}
– for introducing something as deprecated or issuing some other warning in documentation, e.g.:{{strongbad|Not for use in mainspace.}}