Template:WarningBox: Difference between revisions
DrinkyBird (talk | contribs) No edit summary Tag: Source edit |
DrinkyBird (talk | contribs) No edit summary Tag: Source edit |
||
Line 40: | Line 40: | ||
} | } | ||
}, | }, | ||
"format": "block" | "format": "block", | ||
"description": "Creates a customisable warning box", | |||
"paramOrder": [ | |||
"content", | |||
"image", | |||
"imagesize", | |||
"color", | |||
"background", | |||
"border" | |||
] | |||
} | } | ||
</templatedata> | </templatedata> | ||
== Examples == | == Examples == | ||
<ol> | |||
<li> | |||
<pre><nowiki>{{WarningBox | |||
| content = Test | |||
}}</nowiki></pre> | |||
becomes | |||
{{WarningBox | {{WarningBox | ||
| content = Test | |||
}} | |||
</li> | |||
<li> | |||
<pre><nowiki>{{WarningBox | |||
| image = Unkna0.png | | image = Unkna0.png | ||
| content = Test | | content = Test | ||
| background = EFEFEF | | background = EFEFEF | ||
}}</nowiki></pre> | |||
becomes | |||
{{WarningBox | |||
| image = Unkna0.png | |||
| content = Test | |||
| background = EFEFEF | |||
}} | |||
</li> | |||
<li> | |||
<pre><nowiki>{{WarningBox | |||
| image = Za exe2 logo cropped.png | |||
| content = This article documents a [[Zandronum]]-specific [[ACS]] feature which may not be supported by [[doomwiki:ZDoom|ZDoom]] and its other child ports. | |||
| background = F0FFD1 | |||
| border = 41443A | |||
| color = 000000 | |||
}}</nowiki></pre> | |||
becomes | |||
{{WarningBox | |||
| image = Za exe2 logo cropped.png | |||
| content = This article documents a [[Zandronum]]-specific [[ACS]] feature which may not be supported by [[doomwiki:ZDoom|ZDoom]] and its other child ports. | |||
| background = F0FFD1 | |||
| border = 41443A | |||
| color = 000000 | |||
}} | }} | ||
</li> | |||
</ol> | |||
== The template itself == | |||
</noinclude>{| align=center border=0 cellpadding=4 cellspacing=4 style="border: solid 1px #{{#if: {{{border|}}} | {{{border}}} | 000000}}; background-color: #{{#if: {{{background|}}} | {{{background}}} | FFFFFF}}; color: #{{#if: {{{color|}}} | {{{color}}} | 000000}}; padding: 0.4em 1em; width: 75%; margin: 1em auto; text-align: center; border-radius: 3px" | </noinclude>{| align=center border=0 cellpadding=4 cellspacing=4 style="border: solid 1px #{{#if: {{{border|}}} | {{{border}}} | 000000}}; background-color: #{{#if: {{{background|}}} | {{{background}}} | FFFFFF}}; color: #{{#if: {{{color|}}} | {{{color}}} | 000000}}; padding: 0.4em 1em; width: 75%; margin: 1em auto; text-align: center; border-radius: 3px" | ||
|- | |- | ||
| style="width: {{#if: {{{imagesize|}}} | {{{imagesize}}} | 46}}px" | {{#if: {{{image|}}} | [[File:{{{image}}}|{{#if: {{{imagesize|}}} | {{{imagesize}}} | 46}}x{{#if: {{{imagesize|}}} | {{{imagesize}}} | 46}}px]] }} | | style="width: {{#if: {{{imagesize|}}} | {{{imagesize}}} | 46}}px; {{#if: {{{image|}}} | | display:none}}" | {{#if: {{{image|}}} | [[File:{{{image}}}|{{#if: {{{imagesize|}}} | {{{imagesize}}} | 46}}x{{#if: {{{imagesize|}}} | {{{imagesize}}} | 46}}px]] }} | ||
| {{{content}}} | | {{{content}}} | ||
|} | |} |
Revision as of 21:55, 2 January 2023
Creates a customisable warning box
Parameter | Description | Type | Status | |
---|---|---|---|---|
Content | content | Wikitext content of the warning box | Content | required |
Image | image | Image file name | File | suggested |
Image size | imagesize | Pixel size of the image - this affects both width and height
| Number | optional |
Text colour | color | Hex colour value for the text
| Line | optional |
Background colour | background | Hex colour value for the background
| Line | optional |
Border colour | border | Hex colour value for the border
| Line | optional |
Examples
-
{{WarningBox | content = Test }}
becomes
Test -
{{WarningBox | image = Unkna0.png | content = Test | background = EFEFEF }}
becomes
Test -
{{WarningBox | image = Za exe2 logo cropped.png | content = This article documents a [[Zandronum]]-specific [[ACS]] feature which may not be supported by [[doomwiki:ZDoom|ZDoom]] and its other child ports. | background = F0FFD1 | border = 41443A | color = 000000 }}
becomes
This article documents a Zandronum-specific ACS feature which may not be supported by ZDoom and its other child ports.
The template itself
{{{content}}} |