Template:NA/doc: Difference between revisions

From Brighter Shores Wiki
Jump to navigation Jump to search
Content added Content deleted
(Created page with "{{Documentation}} This template displays a table cell with the provided text, or the letters "N/A" if no text is provided. The contents of the cell will be center-aligned unless the optional <code>align</code> parameter is used to specify otherwise. The styling can be further customised using the optional <code>style</code> parameter. The optional <code>data-sort</code> parameter can be used to provide a value used for sorting within the table. ==Usage== This template...")
 
(Changed default data-sort)
 
Line 85: Line 85:
|}
|}


Note how the NA in column 1 (which has no <code>data-sort</code>) is sorted after N, while the NA in column 3 (with <code>data-sort="zz"</code>) is sorted after Y.
Note how the NA in column 1 (which has no <code>data-sort</code>) is sorted before everything else, while the NA in column 3 (with <code>data-sort="zz"</code>) is sorted after Y.
==See also==
==See also==
* {{t|Okay}} and {{t|Not okay}}
* {{t|Okay}} and {{t|Not okay}}

Latest revision as of 18:20, 19 November 2024

This is a documentation subpage for Template:NA.
It contains usage information, categories, and other content that is not part of the original template page.

This template displays a table cell with the provided text, or the letters "N/A" if no text is provided.

The contents of the cell will be center-aligned unless the optional align parameter is used to specify otherwise. The styling can be further customised using the optional style parameter. The optional data-sort parameter can be used to provide a value used for sorting within the table.

Usage

This template can be used by entering the following onto a relevant page, within a table cell.

{{NA}}
N/A Y N
Y Y Y
N Y N/A

colspan

Use this parameter to adjust the column width.

rowspan

Use this parameter to adjust the row height.

{{NA|colspan=2|rowspan=2}}
Y N/A N
Y Y Y Y
N Y N/A
Y

text

Use may also change the text presented simply by doing the following:

{{NA|Perhaps}}
N/A Y N
Y Y Y
N Y Perhaps

style

Allows adding arbitrary inline CSS to the cell.

{{NA|style=text-align:left;}} {{NA|style=text-align:right;}}
Q wider Y wider N wider
Y Y Y
N N/A N/A


data-sort

Allows setting a specific sort value for the cell in sortable tables.

{{NA|data-sort=zz}}
N/A Y N
Y Y Y
N Y N/A
N/A N N

Note how the NA in column 1 (which has no data-sort) is sorted before everything else, while the NA in column 3 (with data-sort="zz") is sorted after Y.

See also