Šablona:Code/doc

Z Wiki JU

Šablona:Mbox[[Category:MediaWiki documentation pages{{#translation:}}]]

Usage

This is a semantic markup wrapper template for the HTML element ‎<code>...‎</code>. It can be used without a parameter to wrap code in a formatted block, with syntax highlighting, or with |inline= for a leaner presentation.

Example:

{{code|lang=css|font-family: 'Times New Roman', serif;}}

produces:

<syntaxhighlight lang="css">font-family: 'Times New Roman', serif;

</syntaxhighlight> Inline:

{{code|inline=y|lang=css|font-family: 'Times New Roman', serif;}}

produces:

<syntaxhighlight lang="css" inline="true">font-family: 'Times New Roman', serif;</syntaxhighlight>

and is equivalent to:

<syntaxhighlight lang="html" inline="1"><syntaxhighlight inline lang="css">font-family: 'Times New Roman', serif;</syntaxhighlight></syntaxhighlight>

TemplateData

This is the TemplateData documentation for this template used by VisualEditor and other tools.

Code

[[Category:TemplateData documentation{{#translation:}}]]

<templatedata> { "description": "A block or inline source code string.", "format": "block", "params": { "1": { "aliases": [ "code" ], "label": "Code", "description": "The code to display.", "required": true, "type": "string" }, "lang": { "aliases": [ "2" ], "label": "Language", "description": "The programming language of the source code. List of valid values is at: Extension:SyntaxHighlight#Supported_languages", "default": "\n* text (if `inline=true`)\n* bash (if `inline` is not set)\n", "suggested": true, "type": "string" }, "inline": { "label": "Inline?", "description": "Whether to use inline formatting", "autovalue": "1", "type": "string" }, "class": { "label": "Class", "description": "Applies only if `inline=true`", "type": "string" }, "id": { "label": "ID", "description": "Applies only if `inline=true`", "type": "string" }, "style": { "label": "CSS Style", "description": "Applies only if `inline=true`", "type": "string" }, "header": { "label": "Header", "description": "Applies only if `inline` is not set", "type": "line" } }, "paramOrder": [ "lang", "inline", "class", "id", "style", "header", "1" ] } </templatedata>

See also