« Modèle:Heading/doc Voir l’historique

(Page créée avec « {{doc subpage}} == Usage == This template enables a selectable number of "=" to be displayed before and after a text string creating a heading. This enables headings to be... »)
 
(Aucune différence)

Dernière version du 27 février 2017 à 17:58

This is a documentation subpage for Modèle:Heading.
It contains usage information, categories and other content that is not part of the original modèle page.

Usage

This template enables a selectable number of "=" to be displayed before and after a text string creating a heading. This enables headings to be variable especially in transcludable pages where the headings may be at different levels depending upon where it is placed.

Parameters

There are two required parameters. The first is the number of equal signs desired indicating the heading level. The second is the heading text.

Example

Base page content

When setting up the base page or template use the following:

{{Heading|{{{1|3}}}|Level three heading on its own page}}
{{Heading|{{#expr:{{{1|3}}}+1}}|Level four heading on its own page}}

produces:

=== Level three heading on its own page ===
==== Level four heading on its own page ====

The calling page

When calling the base page or template into another page use the following:

{{Base Page|4}}

produces:

==== Level three heading on its own page ====
===== Level four heading on its own page =====

Notice the level now starts at level 4 and increments from there when the page is transcluded into another page