Template:Gloss

From Sarkarverse
Jump to navigation Jump to search
Documentation icon Template documentation[view] [edit] [history] [purge]

Usage

The template {{gloss}} is used with {{glossend}} to explicitly bracket a glossary or glossary-like description list (also called a definition list or association list), especially in a template-structured glossary, although such lists can be used more generally. This is required for template=structured glossaries, and is good practice anywhere description/definition lists are used for glossaries. The template pair invoke the <dl>...</dl> description list HTML element. Unfortunately, the {{dl}} mnemonic is not available as a redirect as of this writing.

The pair of templates incidentally prevent Sarkarverse's MediaWiki software engine from auto-creating redundant definition list code (<dl>...</dl>) around terms and definitions if they have blank lines between them, as they often do, especially in non-structured glossaries.

Typical usage:

{{gloss}}
{{term|1=term}}
{{defn|1=Definition.}}
{{glossend}}

Parameters

  • |id=   can be used to assign a one-word ID name (which must begin with an alphabetic letter) to the glossary. This can be used as a #link target, and could have other metadata uses.
  • |style=   will pass CSS styling on to the <dl> element. I.e., this styles the definition list itself, as a container, not the individual terms and definitions with it. There is rarely any reason to do this.

Examples

This shows both a very simple and a rather complex instance in a structured glossary:

==A–M==

{{gloss}}

{{term|1=applesnorkel}}
{{defn|1=Definition of term 1.}}

{{term|1=arglefarst |content=''{{lang|xx|arglefarst}}''{{anchors|argle-farst|argle farst}}}}
{{defn|no=1 |1=
1. Beginning of first definition of term 2
{{bq|1=Block quotation in first definition of term 2.}}
Conclusion of first definition of term 2.
}}

{{defn|no=2 |1=Second definition of term 2.}}

{{glossend}}

A–M
applesnorkel
Definition of term 1.
arglefarst
1.  Beginning of first definition of term 2

Block quotation in first definition of term 2.

Conclusion of first definition of term 2.
2.  Second definition of term 2.

Scope

This family of templates, like the underlying definition list code, is primarily intended for definitional uses, but can have other applications. The HTML 4.01 Specification itself says:

Definition lists...generally consist of a series of term/definition pairs (although definition lists may have other applications). Thus, when advertising a product, one might use a definition list:

Lower cost
The new version of this product costs significantly less than the previous one!
Easier to use
We've changed the product so that it's much easier to use!
Safe for kids
You can leave your kids alone in a room with this product and they won't get hurt (not a guarantee).

Thus, editors should feel free to use definition list markup as an alternative to bulleted or numbered lists when the material is well-suited to definition list presentation.

Template:Term


Template:Defn


See also

  • {{gloss}} – Half of a template pair; uses <dl> with a class to open the structured glossary definition list that {{glossend}} closes.
  • {{glossend}} – The other half of this template pair; uses </dl> to close the definition list that {{gloss}} opens.
  • {{term}} – The glossary term to which the {{defn}} definition applies; a customized <dt> with a class and an embedded <dfn>.
  • {{defn}} – The definition that applies to the {{term}}; uses <dd> with a class
  • {{ghat}} – a hatnote template for just above the main content of the first definition
  • Sarkarverse:Manual of Style/Glossaries