Template:Section link
(Redirected from Template:§l)
File:Lua-logo-nolabel.svg | Uses Lua: |
Usage
Single section
This template is used to generate a link to a certain section of a local wiki page and render an appropriate section mark (§).
Instead of:
[[Download#What next?|Download § What next?]]
...you can write:
{{Section link|Download|What next?}}
...which is much shorter and does not require you to search for the section mark character.
Both generate:
Multiple sections
This template may generate consecutive links to several sections of the same page:
{{Section link|Download|Download from Git instead|What next?}}
...will generate:
- Download §§ Download from Git instead and What next?
Suppressing page name
Sometimes the page name needs not to appear, e.g. to avoid redundancy and wordiness. For the page on which the template is used, not specifying a page name creates a section link only. The following:
{{Section link||Suppressing page name}}
...is the equivalent of:
[[#Suppressing page name|§ Suppressing page name]]
...and renders as:
For other pages, |nopage=1
can be used to suppress the page name.
Comparison of displayed results:
- {{Section link|Help:Templates|Parameters}} →
Help:Templates § Parameters - {{Section link|Help:Templates|Parameters|nopage=1}} →
§ Parameters - {{Section link|Help:Templates|Parameters|Anonymous parameters|Numbered parameters}} →
Help:Templates §§ Parameters, Anonymous parameters, and Numbered parameters - {{Section link|Help:Templates|Parameters|Anonymous parameters|Numbered parameters|nopage=1}} →
§§ Parameters, Anonymous parameters, and Numbered parameters
TemplateData
This is the TemplateData documentation for this template used by VisualEditor and other tools.
Section link
<templatedata> { "description": { "en": "This template is used to generate a link to a certain section of a local wiki page and render an appropriate section mark (§). This template may generate consecutive links to several sections of the same page.", "cs": "Tato šablona se používá k vygenerování odkazu na určitou sekci místní wiki stránky a vykreslení příslušné značky sekce (§). Tato šablona může generovat po sobě jdoucí odkazy na několik částí stejné stránky." }, "params": { "1": { "label": { "en": "Page name", "cs": "Název stránky" }, "description": { "en": "Name of the page to which the link must be created. Leave empty to link to the current page. Doing so causes no page name to appear.", "cs": "Název stránky, na kterou musí být vytvořen odkaz. Nechte prázdné, chcete-li odkazovat na aktuální stránku. Pokud tak učiníte, nezobrazí se žádný název stránky." }, "type": "wiki-page-name", "suggested": true }, "2": { "label": { "en": "Section name 1", "cs": "Název sekce 1" }, "description": { "en": "Name of the (first) section to which the link must be created. This parameter is mandatory.", "cs": "Název (první) sekce, na kterou musí být vytvořen odkaz. Tento parametr je povinný." }, "type": "string", "required": true }, "3": { "label": { "en": "Section name 2", "cs": "Název sekce 2" }, "description": { "en": "This template can link to additional sections within one page. You can supply another section name in this field.", "cs": "Tato šablona může odkazovat na další sekce v rámci jedné stránky. V tomto poli můžete zadat jiný název sekce." }, "type": "string" }, "4": { "label": { "en": "Section name 3", "cs": "Název sekce 3" }, "description": { "en": "This template can link to additional sections within one page. You can supply another section name in this field.", "cs": "Tato šablona může odkazovat na další sekce v rámci jedné stránky. V tomto poli můžete zadat jiný název sekce." }, "type": "string" }, "5": { "label": { "en": "Section name 4", "cs": "Název sekce 4" }, "description": { "en": "This template can link to additional sections within one page. You can supply another section name in this field.", "cs": "Tato šablona může odkazovat na další sekce v rámci jedné stránky. V tomto poli můžete zadat jiný název sekce." }, "type": "string" }, "nopage": { "label": { "en": "Suppress page name?", "cs": "Potlačit název stránky?" }, "description": { "en": "If set to a truthy value, suppresses the page name.", "cs": "Pokud je nastaveno na pravdivou hodnotu, potlačí se název stránky." }, "default": "0", "autovalue": "1", "type": "boolean" } } } </templatedata>