n/a – Template

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\{\{( *)Important( *)\|" to "{{$1Feature$2|$2important$2|")
m (Fix <tt> usage)
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<includeonly>class="na-cell" style="{{{style|}}}" | {{{1|N/A}}}</includeonly><noinclude>
<includeonly>class="na-cell"{{#if:{{{style|}}}|<nowiki/> style="{{{style}}}"}} | {{{1|N/A}}}</includeonly><noinclude>
Fills ''a table '''cell''''' in grey, with N/A text by default.
Fills ''a table '''cell''''' in grey, with N/A text by default.
{{Feature | important | This template has to be ''inside'' a table cell, e.g:
{{Feature | important | This template has to be ''inside'' a table cell, e.g:
Line 19: Line 19:
{{!}}}
{{!}}}


If put in a text paragraph, it results in <tt style{{=}}"font-size: 0.75em">{{n/a}}</tt>.}}
If put in a text paragraph, it results in {{hl|{{n/a}}}}.}}


== Usage ==
== Usage ==
<code>{{<nowiki/>n/a|'''''text'''''|'''''style'''''}}</code>
<code>{{<nowiki/>n/a|'''''text'''''|'''''style'''''}}</code>
* text: (Optional, default "N/A")
* text: (Optional, default "N/A")
* style: (Optional, default "". Named parameter only) additional CSS (e.g <tt>font-weight: bold</tt>)
* style: (Optional, default "". Named parameter only) additional CSS (e.g {{hl|font-weight: bold}})


{|class="wikitable"
{| class="wikitable"
|+ Examples
|+ Examples
! Code
! Code
Line 43: Line 43:
== Source ==
== Source ==
<syntaxhighlight lang="html">
<syntaxhighlight lang="html">
class="na-cell" style="{{{style|}}}" | {{{1|N/A}}}
class="na-cell"{{#if:{{{style|}}}|<nowiki/> style="{{{style}}}"}} | {{{1|N/A}}}
</syntaxhighlight>
</syntaxhighlight>



Revision as of 17:52, 27 May 2022

Fills a table cell in grey, with N/A text by default.

This template has to be inside a table cell, e.g:

{| class="wikitable" ! First Name !! Last Name |- | {{n/a}} || Miller |}

First Name Last Name
N/A Miller
If put in a text paragraph, it results in class="na-cell" | N/A.

Usage

{{n/a|text|style}}

  • text: (Optional, default "N/A")
  • style: (Optional, default "". Named parameter only) additional CSS (e.g font-weight: bold)
Examples
Code Result
{{n/a}} N/A
{{n/a|abc}} abc
{{n/a|style=font-size: 2em; font-weight: bold;text-align: right|wabbit}} wabbit

Source

class="na-cell"{{#if:{{{style|}}}|<nowiki/> style="{{{style}}}"}} | {{{1|N/A}}}