Template:Tag
<tag>...</tag>
This is the TemplateData documentation for this template used by VisualEditor and other tools.
Tag
<templatedata>
{
"description": {
"en": "This template provides a quick way to mention an XML-style tag in a preformatted way. Mainly used in discussion/help pages.",
"cs": "Tato šablona poskytuje rychlý způsob, jak zmínit značku ve stylu XML předformátovaným způsobem. Používá se hlavně na stránkách diskusí/nápovědy.",
"tr": "Bu şablon, XML tarzı bir etiketi önceden biçimlendirilmiş bir şekilde belirtmenin hızlı bir yolunu sağlar. Esas olarak tartışma/yardım sayfalarında kullanılır."
},
"format": "inline",
"params": {
"1": {
"label": {
"en": "Tag",
"cs": "Značka",
"tr": "Etiket"
},
"description": {
"en": "The name of the HTML tag.",
"cs": "Název značky HTML.",
"tr": "HTML etiketinin adı."
},
"example": {
"en": "span",
"cs": "rozsah",
"tr": "span"
},
"type": "line",
"default": {
"en": "tag",
"cs": "Značka",
"tr": "tag"
},
"required": true
},
"2": {
"label": {
"en": "Type",
"cs": "Typ",
"tr": "Tür"
},
"description": {
"en": "What type of tag to display, see documentation for possible values.",
"cs": "Jaký typ značky zobrazit, možné hodnoty naleznete v dokumentaci.",
"tr": "Ne tür bir etiket görüntülenecek, olası değerler için belgelere bakın."
},
"suggestedvalues": [
"p",
"pair",
"o",
"open",
"c",
"close",
"s",
"single"
],
"default": {
"en": "pair",
"cs": "pár",
"tr": "pair"
},
"type": "string"
},
"content": {
"label": {
"en": "Content",
"cs": "Obsah",
"tr": "İçerik"
},
"description": {
"en": "The text content of the tag. By default “...” for pair type, empty for others; unused if type is single.",
"cs": "Textový obsah značky. Ve výchozím nastavení “...” pro typ páru, prázdné pro ostatní; nepoužito, pokud je typ single.",
"tr": "Etiketin metin içeriği. Çift tipi için varsayılan olarak “...”, diğerleri için boştur; tür tek ise kullanılmaz."
},
"type": "content"
},
"params": {
"label": {
"en": "Parameters",
"cs": "Parametery",
"tr": "Parametreler"
},
"description": {
"en": "Parameters (attributes) for the opening tag, unused in close type.",
"cs": "Parametry (atributy) pro úvodní značku, nepoužívané v typu close.",
"tr": "Kapanış türünde kullanılmayan açılış etiketi için parametreler (öznitelikler)."
},
"example": {
"en": "foo=\"bar\"",
"cs": "foo=\"bar\"",
"tr": "foo=\"bar\""
},
"type": "line"
},
"plain": {
"label": {
"en": "Plain display",
"cs": "Obyčejný displej",
"tr": "Düz görüntüleme"
},
"description": {
"en": "Avoid using monospace font and grey background for the tag.",
"cs": "Vyhněte se použití jednoprostorového písma a šedého pozadí pro značku.",
"tr": "Etiket için tek aralıklı yazı tipi ve gri arka plan kullanmaktan kaçının."
},
"type": "boolean"
},
"wrap": {
"label": {
"en": "Wrap?",
"cs": "Zabalit?"
},
"description": {
"en": "Whether to not add `style=\"white-space: nowrap;\"` to the enclosing tag.",
"cs": "Zda nepřidat `style=\"white-space: nowrap;\"` do ohraničující značky
."
},
"autovalue": "1",
"type": "boolean"
}
}
}
</templatedata>
Usage
Types
p
or pair
– (default) display a matched pair of open-and-close tags: <div>...</div>
o
or open
– display only the opening tag of an open-and-close pair: <span>
c
or close
– display only the closing tag of an open-and-close pair: </span>
s
or single
– display a single tag: <br />
Examples
- {{tag|ref}} →
<ref>...</ref>
- {{tag|ref|content=hello}} →
<ref>hello</ref>
- {{tag|span|content=foo}} →
<span>foo</span>
- {{tag|span|open}} →
<span>
- {{tag|span|open|content=hello}} →
<span>hello
- {{tag|span|close|content=hello}} →
hello</span>
- {{tag|span|pair|content=hello}} →
<span>hello</span>
- {{tag|ref|open|params={{attr|group|"note"}}}} →
<ref group="note">
- {{tag|references|single}} →
<references />
- {{tag|br|single}} →
<br />
See also