Template:Mark

From MozillaWiki
Jump to: navigation, search

{{{1}}}

Documentation icon Template documentation[view] [edit] [history] [purge]

Usage

{{mark}} is a front-end for the HTML element <mark>, which is used to highlight text (in the same way as a marker pen).

Parameters

There are 4 parameters, of which 1 is unnamed and required, and the other 3 are named and optional.

Syntax

The template's syntax is

  • {{mark|custom text |class= |id= |style= }}

Required parameter

1

Custom text

The text you wish to enclose in <mark> tags.

Usage
  • {{mark|1}}

Optional parameters

class

Custom class

Attribute a class to the text string.

Usage
  • {{mark|1|class=}}

id

Custom id

Give the text string a custom id.

Usage
  • {{mark|1|id=}}

style

Custom text styling

You can override the default output styling by using this parameter to specify CSS properties with appropriate values.

Note
  • When entering the CSS properties and values, use the normal format, separating the property from its value with a colon (:), and ending each property:value pair with a semicolon (;), e.g. css-property-1:value; css-property-2:value; css-property-3:value;. But, don't enclose the entry in double quotation marks ("…"). That is done automatically.
Usage
  • {{mark|1|style=prop1:valueA; prop2:valueB;}}

Examples

Case What you type What you see
Basic use Marked text}} Marked text
class and id class=string|id=meta1|Marked text with meta-informtion}} Marked text with meta-informtion
style style=color:green;background-color:#fff0d0;|This marked text has been styled}} This marked text has been styled
Wiki-formatting You ''can'' '''use''' {{sup|wiki}} <big>markup</big>}} You can use wiki markup

See also

  • {{abbr}}: inserts <abbr> tags to include a tooltip explanation of an abbreviation.
  • {{bdi}}: inserts <bdi> tags to allow for inline changes in text direction.
  • {{bdo}}: inserts <bdo> tags, forcing inline changes in text direction.
  • {{code}}: inserts <code> tags.
  • {{samp}}: inserts <samp> tags.
  • {{var}}: inserts <var> tags.
  • {{varserif}}: inserts <var> tags with serif font styling.