hl – Template

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix)
(Fix slash wordbreak breaking HTML tags)
Line 3: Line 3:
| {{#pos:{{{c|{{{1}}}}}}|:}}= {{#replace:{{{c|{{{1}}}}}}|:|:}}
| {{#pos:{{{c|{{{1}}}}}}|:}}= {{#replace:{{{c|{{{1}}}}}}|:|:}}
| {{#pos:{{{c|{{{1}}}}}}|#}}= {{#replace:{{{c|{{{1}}}}}}|#|#}}
| {{#pos:{{{c|{{{1}}}}}}|#}}= {{#replace:{{{c|{{{1}}}}}}|#|#}}
| {{#ifexpr: {{#if:{{#pos:{{{c|{{{1}}}}}}|/}}|1|0}} and {{#if:{{#pos:{{{c|{{{1}}}}}}|[<nowiki/>[}}|0|1}}|0}}= {{#replace:{{{c|{{{1}}}}}}|/|<wbr>/}}
| {{#ifexpr: {{#if:{{#pos:{{{c|{{{1}}}}}}|/}}|1|0}} and {{#if:{{#pos:{{{c|{{{1}}}}}}|[<nowiki/>[}}|0|1}}|0}}= {{#replace:{{#replace:{{{c|{{{1}}}}}}|/|<wbr>/}}|<<wbr>/|</}}
| {{#if:{{#pos:{{{c|{{{1}}}}}}|\}}|0}}= {{#replace:{{{c|{{{1}}}}}}|\|<wbr>\}}
| {{#if:{{#pos:{{{c|{{{1}}}}}}|\}}|0}}= {{#replace:{{{c|{{{1}}}}}}|\|<wbr>\}}
| {{{c|{{{1}}}}}}
| {{{c|{{{1}}}}}}
Line 39: Line 39:
; test :{{hl|test}}
; test :{{hl|test}}


|example7= <nowiki>* {{hl|:}}</nowiki><br><nowiki>* {{hl|: test}}</nowiki><br><nowiki>* {{hl|[[Template:Link]]}}</nowiki><br><nowiki>* {{hl|[[Template:Link/Internal]]}}</nowiki><br><nowiki>* {{hl|[[Description.ext#CfgSounds]]}}</nowiki><br><nowiki>* {{hl|{{Link|Description.ext#CfgSounds}}}}</nowiki><br><nowiki>* {{hl|{{GVI|arma3|1.00}}}}</nowiki><br><nowiki>* {{hl|&lt;nowiki>{{GVI|arma3|1.00}}&lt;/nowiki>}}</nowiki><br><nowiki>* {{hl|c= &lt;nowiki>{{GVI|arma3|1.00}}&lt;/nowiki>}}</nowiki>
|example7= <nowiki/>
<nowiki>* {{hl|:}}</nowiki><br>
<nowiki>* {{hl|: test}}</nowiki><br>
<nowiki>* {{hl|[[Template:Link]]}}</nowiki><br>
<nowiki>* {{hl|[[Template:Link/Internal]]}}</nowiki><br>
<nowiki>* {{hl|[[Description.ext#CfgSounds]]}}</nowiki><br>
<nowiki>* {{hl|{{Link|Description.ext#CfgSounds}}}}</nowiki><br>
<nowiki>* {{hl|{{GVI|arma3|1.00}}}}</nowiki><br>
<nowiki>* {{hl|&lt;nowiki>{{GVI|arma3|1.00}}&lt;/nowiki>}}</nowiki><br>
<nowiki>* {{hl|c= &lt;nowiki>{{GVI|arma3|1.00}}&lt;/nowiki>}}</nowiki><br>
<nowiki>* {{hl|2&amp;nbsp;km<sup>2</sup>}}</nowiki><br>
|result7= <nowiki/>
|result7= <nowiki/>
* {{hl|:}}
* {{hl|:}}
Line 50: Line 60:
* {{hl|<nowiki>{{GVI|arma3|1.00}}</nowiki>}}
* {{hl|<nowiki>{{GVI|arma3|1.00}}</nowiki>}}
* {{hl|c= <nowiki>{{GVI|arma3|1.00}}</nowiki>}}
* {{hl|c= <nowiki>{{GVI|arma3|1.00}}</nowiki>}}
* {{hl|2&nbsp;km<sup>2</sup>}}
}}</noinclude>
}}</noinclude>

Revision as of 12:12, 26 October 2024

This template displays highlighted content - it replaces <tt> which was used across the wiki. It also adds the page to the hl template usage error category on usage error.

This template is used on these pages.

Usage

{{hl|c}}

  • c: the content to display.
    If it contains an equal sign =, which it should not (for inline code, <syntaxhighlight>/<sqf> should be used instead):
    • replace it with {{=}}
    • use c=
    • use the MediaWiki trick 1=
Examples
Code Result
{{hl}} -No content provided-
{{hl|"AWARE"}} "AWARE"
{{hl|oneLongFilePath/ThatCannotLineBreak/OnMobileOrOtherNonWideScreen/BecauseThereAreNoSpaces/AndGivenFirefoxAndChromeBrowsersHaveADifferentBehaviour/LetsCoverAllTheCases}} oneLongFilePath/ThatCannotLineBreak/OnMobileOrOtherNonWideScreen/BecauseThereAreNoSpaces/AndGivenFirefoxAndChromeBrowsersHaveADifferentBehaviour/LetsCoverAllTheCases
{{hl|oneLongFilePath\ThatCannotLineBreak\OnMobileOrOtherNonWideScreen\BecauseThereAreNoSpaces\AndGivenFirefoxAndChromeBrowsersHaveADifferentBehaviour\LetsCoverAllTheCases}} oneLongFilePath\ThatCannotLineBreak\OnMobileOrOtherNonWideScreen\BecauseThereAreNoSpaces\AndGivenFirefoxAndChromeBrowsersHaveADifferentBehaviour\LetsCoverAllTheCases
{{hl|#test1}} test2 {{hl|#test3}} test4 #test1 test2 #test3 test4
{{hl|:}}
a {{hl|:}} b
; test {{hl|test}}
; test {{hl|:test}}
; test: {{hl|test}}
:
a : b
test test
test :test
test
test

* {{hl|:}}
* {{hl|: test}}
* {{hl|[[Template:Link]]}}
* {{hl|[[Template:Link/Internal]]}}
* {{hl|[[Description.ext#CfgSounds]]}}
* {{hl|{{Link|Description.ext#CfgSounds}}}}
* {{hl|{{GVI|arma3|1.00}}}}
* {{hl|<nowiki>{{GVI|arma3|1.00}}</nowiki>}}
* {{hl|c= <nowiki>{{GVI|arma3|1.00}}</nowiki>}}
* {{hl|2&nbsp;km<sup>2</sup>}}