Izvor: Vojna Enciklopedija
Ово је најновија верзија ове странице; нема одобрених измена.
Пређи на навигацију
Пређи на претрагу
{{{1}}}
Usage
The {{deprecated code}} template (easiest used from its {{dc}} redirect) can be used to indicate, e.g. in template documentation or Wikipedia articles on things like HTML specifications, code that has been deprecated and should not normally be used. On the technical level it is a CSS-styled <del>...</del> that greys out the text (the near-universal sign in computing and computing documentation for "doesn't work", "don't do this", "bad code", "ignore", "option not available", etc.), and removes that element's usual strikethrough (CSS: "line-through") rendering, which makes the content hard to read. If you really want that line-through, use the {{dc2}} variant to do this; it is otherwise identical.
Parameters
|1= the content to be marked as deprecated
|2= or |title= a mouse-over "tooltip" (in some browsers, anyway), e.g. for briefly explaining the deprecation, e.g. "Deprecated since HTML 3.0" or "Breaks infobox formatting"
|red=y make the text red instead of grey, for indicating dangerous/error/forbidden things (a shortcut for this is {{dcr}})
|class= assign a CSS class
|id= assign an HTML ID for #linking and other purposes (must be unique on the page and start with an alphabetic letter)
|style= add additional CSS styling (can be used to add text-decoration:line-through; back in if you want that formatting; a shortcut for this is {{dc2}})
Examples
{{dc|deprecated}} yields: deprecated
{{dcr|deprecated}} yields: deprecated
{{dc2|deprecated}} yields: deprecated
See also
- {{xtd}} and related templates for indicating deprecated (and good, bad and neutral) examples in guidelines, how-tos and template documentation.
|
|---|
|
| Template | Example output | Use
| | {{strong}} | strong semantic emphasis | To indicate <strong> emphasis instead of (or as well as) simple typographical boldfacing.
| | {{strongbad}} | "Never use..." | Same as {{strong}} but in red.
| | {{stronggood}} | "Only use..." | Same as {{strong}} but in green.
| | {{em}} | mild semantic emphasis | As per {{strong}} but for the milder <em> emphasis (instead of / as well as typographical italicization).
| | {{var}} | strPrefix | To indicate text is a variable name. Use for any variable names except those including "I" (uppercase i) and/or "l" (lowercase L); for these, {{varserif}} should be used to ensure a noticeable distinction.
| | {{varserif}} | strIllustratePrefix | (see {{var}} above)
| | {{wikivar}} | {{DEFAULTSORT:Y, X}} | To display wikicode variables and magic words as they would appear in code.
| | {{para}} | |year=2008 | To display template parameters with or without values.
| | {{param}} | |title=alt | To display parameters as used in code (i.e. with triple braces), especially to indicate relationships between them. May be combined with {{para}} above.
| | {{tlx}} etc. | {{Template|1|2|...|10}} | To display a template call (with or without parameters and values) as code.
| | {{tag}} | "The <img>...</img> tags..." | To render HTML elements ("tags") as prose.
| | {{code}} | "Ensure the alt= parameter..." | To indicate text is source code. To nest other templates within {{code}}, use <code>...</code>.
| | {{subst:codenowiki}}
| <code><nowiki> code ... ...</nowiki></code>
| To wrap example code in <code> and nested <nowiki> tags.
| | {{syntaxhighlight}} | | ( or {{sxhl}} ) Wrapper for <syntaxhighlight>...</syntaxhighlight>, but will wrap overflowing text.
| | {{deprecated code}} | "Do not use <blink>." | ( or {{dc}} ) To indicate deprecated source code in template documentation, articles on HTML specs, etc. The {{dc2}} variant uses strike-through (<blink>) while {{dc|red{{=}}y}} uses red (<blink>).
| | {{pre}} | | For larger blocks of source code and other pre-formatted text.
| | {{bq}} | | For indented blocks of content, such as block quotations, examples, poems, etc.
| | {{kbd}} | user input | To indicate user input.
| | {{key press}} | CtrlX | To indicate specific-keystroke input.
| | {{PlayStation key press}} | × | To indicate PlayStation-style gamepad key presses.
| | {{samp}} | example output | To indicate sample or example output.
|
|