Formatting – Bohemia Interactive Community

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Erentar moved page User:Cheatsheet to User:Erentar/Sandbox4)
m (→‎Text formatting markup: Added teletype <tt>)
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
''This page contains information about Arma 3. If you were looking for other game titles, see Arma(Disambiguation)''
[[Category:Community Wiki]]<br clear="all">
=Getting started with Arma=
[[File:BIKI Editor Help.PNG|thumb|The text editor comes with some basic text formatting tips|500px]]
==A3==
 
Arma 3 stuff here
== Text formatting markup ==
==A3==
 
Arma 3 stuff here
{| class="wikitable"
! Description
! width="40%" | You type
! width="40%" | You get
|-
! colspan="3" style="background: #ABE" | Character (inline) formatting – ''applies anywhere''
|-
| Italic text
| <pre>
''italic''
</pre>
|
''italic''
|-
| Bold text
| <pre>
'''bold'''
</pre>
|
'''bold'''
|-
| Bold and italic
| <pre>
'''''bold & italic'''''
</pre>
|
'''''bold & italic'''''
|-
| Colored text
| <pre>
<span style="color: red;">Colour</span>
</pre>
|
<span style="color: red;">Colour</span>
|-
| Spoiler
| <pre>
<spoiler text="Click me!">spoiler</spoiler>
</pre>
|
<spoiler text="Click me!">spoiler</spoiler>
|-
| Escape wiki markup
| <pre>
&lt;nowiki&gt; no ''markup''&lt;/nowiki&gt;
</pre>
|
<nowiki>no ''markup''</nowiki>
|-
|Small chunks of source code within a line of normal text.
Code is displayed in a monospace font.
|<pre>
function <code>int m2()</code> is nice.
</pre>
|function <code>int m2()</code> is nice.
|-
|Small text
|<pre>
Text can be made <small>smaller like this</small>
</pre>
|Text can be made <small>smaller like this</small>
|-
|Big text
|<pre>
Text can be made <big>bigger like this</big>
</pre>
|Text can be made <big>bigger like this</big>
|-
|Teletype
|<pre>
Highlight <tt>TAG_someVariable</tt> in a text
</pre>
|Highlight <tt>TAG_someVariable</tt> in a text
|-
! colspan="3" style="background: #ABE" | Section formatting – ''only at the beginning of the line''
|-
| Section Headings of different levels
| <pre>
== Level 2 ==
 
=== Level 3 ===
 
==== Level 4 ====
 
===== Level 5 =====
 
====== Level 6 ======
</pre>
----
{{note|
* Do not put any text on the same line after the ending equal signs.
* An article with 4 or more headings automatically creates a '''T'''able '''o'''f '''C'''ontents (ToC) - unless setting the magic word <tt><nowiki>__NOTOC__</nowiki></tt>.
* You can use a right-side ToC with the [[Template:SideTOC|{{<nowiki/>SideTOC}} template]].
* Recommended spacing:
** Add spaces between the title itself and the equal signs
** '''Two''' empty lines before a '''Level 2''' title, one after
** '''One''' empty line before a '''Level 3''' title, one after
** '''One''' empty line before a '''Level 4..6''' title, '''none''' after.
}}
|
<!-- using HTML markup to avoid creating new sections -->
<span style="font-family:Georgia;font-size:18pt">Level 2</span>
----
 
 
<span style="font-family:arial;font-size:12pt">'''Level 3'''</span>
----
 
<span style="font-family:arial;font-size:11pt">'''Level 4'''</span>
----
 
<span style="font-family:arial;font-size:11pt">'''Level 5'''</span>
----
 
<span style="font-family:arial;font-size:11pt">'''Level 6'''</span>
----
|-
| Horizontal rule
| <pre>
Text before
----
Text after
</pre>
|
Text before
----
Text after
|-
|Line Breaks
|<pre>
A single newline here has no effect on the layout.
 
But an empty line starts a new paragraph, or ends a list or an indented part.
Lines can be forced to break <br> like this.
</pre>
|A single newline here has no effect on the layout.
But an empty line starts a new paragraph,
 
or ends a list or an indented part.
 
Lines can be forced to break
 
like this.
|-
| Indent text
| <pre>
: Single indent
:: Double indent
::::: Multiple indent
</pre>
----
{{note|This workaround may harm accessibility.}}
|
 
: Single indent
:: Double indent
::::: Multiple indent
 
|-
| Mixture of different types of list
|
<pre>
# one
# two
#* two point one
#* two point two
# three
#; three item one
#: three def one
# four
#: four def one
#: this looks like a continuation
#: and is often used
#: instead <br />of &lt;nowiki><br />&lt;/nowiki>
# five
## five sub 1
### five sub 1 sub 1
## five sub 2
</pre>
----
{{note|The usage of <code>#:</code> and <code>*:</code> for breaking a line within an item may also harm accessibility.}}
|
 
# one
# two
#* two point one
#* two point two
# three
#; three item one
#: three def one
# four
#: four def one
#: this looks like a continuation
#: and is often used
#: instead <br />of <nowiki><br /></nowiki>
# five
## five sub 1
### five sub 1 sub 1
## five sub 2
 
|-
| Preformatted text
| <pre>
Start each line with a space.
Text is '''preformatted''' and
''markups'' '''''can''''' be done.
</pre>
----
{{note|This way of preformatting only applies to section formatting. Character formatting markups are still effective.}}
|
Start each line with a space.
Text is '''preformatted''' and
''markups'' '''''can''''' be done.
 
|-
| Preformatted text blocks
| <pre> &lt;nowiki&gt;
Start with a space in the first column,
(before the <tvar|1>&lt;nowiki&gt;</>).
 
 
Then your block format will be
    maintained.
 
 
This is good for copying in code blocks:
 
 
def function():
    """ documentation string"""
 
    if True:
        print True
    else:
        print False&lt;nowiki&gt;
</pre>
|
{{#tag:nowiki|
      Start with a space in the first column,
      (before the &lt;nowiki&gt;).
     
     
      Then your block format will be
          maintained.
     
     
      This is good for copying in code blocks:
     
     
      def function():
          """ documentation string"""
     
          if True:
              print True
          else:
              print False
      }}
|}
 
== HTML tags ==
{| class="wikitable"
! Description
! width="40%" | You type
! width="40%" | You get
|-
| Inserted <br />(Displays as underline in most browsers)
| <pre>
<ins> Inserted</ins>
 
or
 
<u> Underline</u>
</pre>
|
<ins> Inserted</ins>
 
or
 
<u> Underline</u>
|-
| Deleted <br />(Displays as strikethrough in most browsers)
| <pre>
<s> Struck out</s>
 
or
 
<del> Deleted</del>
 
</pre>
|
<s> Struck out</s>
 
or
 
<del> Deleted</del>
|-
| Blockquotes
| <pre>
Text before
<blockquote> Blockquote</blockquote>
Text after
</pre>
|
Text before
<blockquote> Blockquote</blockquote>
Text after
|-
| Quotes
| <pre>&lt;q&gt; This is a quotation&lt;&#47;q&gt;</pre>
{{note|The q element '''must not''' be used in place of quotation marks that do not represent quotes; for example, it is inappropriate to use the q element for marking up sarcastic statements.<ref>[https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-q-element HTML Living Standard—The &lt;'''q'''&gt; element]</ref>}}
| <q> This is a quotation</q>
|-
| Comment
| <pre>
 
<!-- This is a comment -->
Comments are visible only
in the edit zone.
</pre>
|
<!-- This is a comment -->Comments are visible only
in the edit zone.
 
|-
| Completely preformatted text
| <pre>
<pre>
 
Text is '''preformatted''' and
''markups'' '''''cannot''''' be done&lt;/pre>
</pre>
----
{{note|For marking up of preformatted text, check the "Preformatted text" entry at the end of the previous table.}}
|
<pre>
 
Text is '''preformatted''' and
''markups'' '''''cannot''''' be done
</pre>
|-
| '''Customized''' preformatted text
| <pre>
<pre style="color: red">
 
Text is '''preformatted'''
with a style and
''markups'' '''''cannot''''' be done
&lt;/pre>
</pre>
----
{{note|A CSS style can be named within the <code>style</code> attribute.}}
|
<pre style="color: red">
 
Text is '''preformatted'''
with a style and
''markups'' '''''cannot''''' be done
</pre>
|}
 
continued:
{| class="wikitable" style="table-layout: fixed; width: 100%" |
! Description
! width="40%" | You type
! width="40%" | You get
|-
| '''Default''' preformatted text has a CSS attribute (<code>white-space: pre-wrap;</code>) to wrap the text according to available width
| <pre>
<pre>
This long sentence is used to demonstrate text wrapping. This additional sentence makes the text even longer. This additional sentence makes the text even longer.
&lt;/pre>
</pre>
|
<pre>
This long sentence is used to demonstrate text wrapping. This additional sentence makes the text even longer. This additional sentence makes the text even longer.
</pre>
|-
| '''Customized''' preformatted text with '''disabled''' text wrapping
| <pre>
<pre style="white-space: pre;">
This long sentence is used to demonstrate text wrapping. This additional sentence makes the text even longer. This additional sentence makes the text even longer.
&lt;/pre>
</pre>
|
<pre style="white-space: pre;">
This long sentence is used to demonstrate text wrapping. This additional sentence makes the text even longer. This additional sentence makes the text even longer.
</pre>
|}
 
== Inserting symbols ==
 
Symbols and other special characters not available on your keyboard can be inserted in a multitude of ways.
Many [http://www.howtogeek.com/210824/how-to-quickly-type-special-characters-on-any-computer-smartphone-or-tablet/ Operating Systems and browsers] allow you to insert special characters through a menu option or Operating System panel.
 
 
As a last resort, you can use a special sequence of characters. Those sequences are called HTML entities. For example, the following sequence (entity) '''&amp;rarr;''' when inserted will be shown as <ins>right arrow</ins> HTML symbol &rarr; and '''&amp;mdash;''' when inserted will be shown as an <ins>em dash</ins> HTML symbol &mdash;.
----
{{note|Hover over any character to find out the symbol that it produces. Some symbols not available in the current font will appear as empty squares.}}
 
{| class="wikitable" width="100%" align="center"
! colspan="32" | HTML symbol entities
|- align="center"
| '''<span title="&amp;Aacute;">&Aacute;</span>'''
| '''<span title="&amp;aacute;">&aacute;</span>'''
| '''<span title="&amp;Acirc;">&Acirc;</span>'''
| '''<span title="&amp;acirc;">&acirc;</span>'''
| '''<span title="&amp;acute;">&acute;</span>'''
| '''<span title="&amp;AElig;">&AElig;</span>'''
| '''<span title="&amp;aelig;">&aelig;</span>'''
| '''<span title="&amp;Agrave;">&Agrave;</span>'''
| '''<span title="&amp;agrave;">&agrave;</span>'''
| '''<span title="&amp;alefsym;">&alefsym;</span>'''
| '''<span title="&amp;Alpha;">&Alpha;</span>'''
| '''<span title="&amp;alpha;">&alpha;</span>'''
| '''<span title="&amp;amp;">&amp;</span>'''
| '''<span title="&amp;and;">&and;</span>'''
| '''<span title="&amp;ang;">&ang;</span>'''
| '''<span title="&amp;Aring;">&Aring;</span>'''
| '''<span title="&amp;aring;">&aring;</span>'''
| '''<span title="&amp;asymp;">&asymp;</span>'''
| '''<span title="&amp;Atilde;">&Atilde;</span>'''
| '''<span title="&amp;atilde;">&atilde;</span>'''
| '''<span title="&amp;Auml;">&Auml;</span>'''
| '''<span title="&amp;auml;">&auml;</span>'''
| '''<span title="&amp;bdquo;">&bdquo;</span>'''
| '''<span title="&amp;Beta;">&Beta;</span>'''
| '''<span title="&amp;beta;">&beta;</span>'''
| '''<span title="&amp;brvbar;">&brvbar;</span>'''
| '''<span title="&amp;bull;">&bull;</span>'''
| '''<span title="&amp;cap;">&cap;</span>'''
| '''<span title="&amp;Ccedil;">&Ccedil;</span>'''
| '''<span title="&amp;ccedil;">&ccedil;</span>'''
| '''<span title="&amp;cedil;">&cedil;</span>'''
| '''<span title="&amp;cent;">&cent;</span>'''
|- align="center"
| '''<span title="&amp;Chi;">&Chi;</span>'''
| '''<span title="&amp;chi;">&chi;</span>'''
| '''<span title="&amp;circ;">&circ;</span>'''
| '''<span title="&amp;clubs;">&clubs;</span>'''
| '''<span title="&amp;cong;">&cong;</span>'''
| '''<span title="&amp;copy;">&copy;</span>'''
| '''<span title="&amp;crarr;">&crarr;</span>'''
| '''<span title="&amp;cup;">&cup;</span>'''
| '''<span title="&amp;curren;">&curren;</span>'''
| '''<span title="&amp;dagger;">&dagger;</span>'''
| '''<span title="&amp;Dagger;">&Dagger;</span>'''
| '''<span title="&amp;darr;">&darr;</span>'''
| '''<span title="&amp;dArr;">&dArr;</span>'''
| '''<span title="&amp;deg;">&deg;</span>'''
| '''<span title="&amp;Delta;">&Delta;</span>'''
| '''<span title="&amp;delta;">&delta;</span>'''
| '''<span title="&amp;diams;">&diams;</span>'''
| '''<span title="&amp;divide;">&divide;</span>'''
| '''<span title="&amp;Eacute;">&Eacute;</span>'''
| '''<span title="&amp;eacute;">&eacute;</span>'''
| '''<span title="&amp;Ecirc;">&Ecirc;</span>'''
| '''<span title="&amp;ecirc;">&ecirc;</span>'''
| '''<span title="&amp;Egrave;">&Egrave;</span>'''
| '''<span title="&amp;egrave;">&egrave;</span>'''
| '''<span title="&amp;empty;">&empty;</span>'''
| '''<span title="&amp;emsp;">&emsp;</span>'''
| '''<span title="&amp;ensp;">&ensp;</span>'''
| '''<span title="&amp;Epsilon;">&Epsilon;</span>'''
| '''<span title="&amp;epsilon;">&epsilon;</span>'''
| '''<span title="&amp;equiv;">&equiv;</span>'''
| '''<span title="&amp;Eta;">&Eta;</span>'''
| '''<span title="&amp;eta;">&eta;</span>'''
|- align="center"
| '''<span title="&amp;ETH;">&ETH;</span>'''
| '''<span title="&amp;eth;">&eth;</span>'''
| '''<span title="&amp;Euml;">&Euml;</span>'''
| '''<span title="&amp;euml;">&euml;</span>'''
| '''<span title="&amp;euro;">&euro;</span>'''
| '''<span title="&amp;exist;">&exist;</span>'''
| '''<span title="&amp;fnof;">&fnof;</span>'''
| '''<span title="&amp;forall;">&forall;</span>'''
| '''<span title="&amp;frac12;">&frac12;</span>'''
| '''<span title="&amp;frac14;">&frac14;</span>'''
| '''<span title="&amp;frac34;">&frac34;</span>'''
| '''<span title="&amp;frasl;">&frasl;</span>'''
| '''<span title="&amp;Gamma;">&Gamma;</span>'''
| '''<span title="&amp;gamma;">&gamma;</span>'''
| '''<span title="&amp;ge;">&ge;</span>'''
| '''<span title="&amp;gt;">&gt;</span>'''
| '''<span title="&amp;harr;">&harr;</span>'''
| '''<span title="&amp;hArr;">&hArr;</span>'''
| '''<span title="&amp;hearts;">&hearts;</span>'''
| '''<span title="&amp;hellip;">&hellip;</span>'''
| '''<span title="&amp;Iacute;">&Iacute;</span>'''
| '''<span title="&amp;iacute;">&iacute;</span>'''
| '''<span title="&amp;Icirc;">&Icirc;</span>'''
| '''<span title="&amp;icirc;">&icirc;</span>'''
| '''<span title="&amp;iexcl;">&iexcl;</span>'''
| '''<span title="&amp;Igrave;">&Igrave;</span>'''
| '''<span title="&amp;igrave;">&igrave;</span>'''
| '''<span title="&amp;image;">&image;</span>'''
| '''<span title="&amp;infin;">&infin;</span>'''
| '''<span title="&amp;int;">&int;</span>'''
| '''<span title="&amp;Iota;">&Iota;</span>'''
| '''<span title="&amp;iota;">&iota;</span>'''
|- align="center"
| '''<span title="&amp;iquest;">&iquest;</span>'''
| '''<span title="&amp;isin;">&isin;</span>'''
| '''<span title="&amp;Iuml;">&Iuml;</span>'''
| '''<span title="&amp;iuml;">&iuml;</span>'''
| '''<span title="&amp;Kappa;">&Kappa;</span>'''
| '''<span title="&amp;kappa;">&kappa;</span>'''
| '''<span title="&amp;Lambda;">&Lambda;</span>'''
| '''<span title="&amp;lambda;">&lambda;</span>'''
| '''<span title="&amp;lang;">&lang;</span>'''
| '''<span title="&amp;laquo;">&laquo;</span>'''
| '''<span title="&amp;larr;">&larr;</span>'''
| '''<span title="&amp;lArr;">&lArr;</span>'''
| '''<span title="&amp;lceil;">&lceil;</span>'''
| '''<span title="&amp;ldquo;">&ldquo;</span>'''
| '''<span title="&amp;le;">&le;</span>'''
| '''<span title="&amp;lfloor;">&lfloor;</span>'''
| '''<span title="&amp;lowast;">&lowast;</span>'''
| '''<span title="&amp;loz;">&loz;</span>'''
| '''<span title="&amp;lrm;">&lrm;</span>'''
| '''<span title="&amp;lsaquo;">&lsaquo;</span>'''
| '''<span title="&amp;lsquo;">&lsquo;</span>'''
| '''<span title="&amp;lt;">&lt;</span>'''
| '''<span title="&amp;macr;">&macr;</span>'''
| '''<span title="&amp;mdash;">&mdash;</span>'''
| '''<span title="&amp;micro;">&micro;</span>'''
| '''<span title="&amp;middot;">&middot;</span>'''
| '''<span title="&amp;minus;">&minus;</span>'''
| '''<span title="&amp;Mu;">&Mu;</span>'''
| '''<span title="&amp;mu;">&mu;</span>'''
| '''<span title="&amp;nabla;">&nabla;</span>'''
| '''<span title="&amp;nbsp;">&nbsp;</span>'''
| '''<span title="&amp;ndash;">&ndash;</span>'''
|- align="center"
| '''<span title="&amp;ne;">&ne;</span>'''
| '''<span title="&amp;ni;">&ni;</span>'''
| '''<span title="&amp;not;">&not;</span>'''
| '''<span title="&amp;notin;">&notin;</span>'''
| '''<span title="&amp;nsub;">&nsub;</span>'''
| '''<span title="&amp;Ntilde;">&Ntilde;</span>'''
| '''<span title="&amp;ntilde;">&ntilde;</span>'''
| '''<span title="&amp;Nu;">&Nu;</span>'''
| '''<span title="&amp;nu;">&nu;</span>'''
| '''<span title="&amp;Oacute;">&Oacute;</span>'''
| '''<span title="&amp;oacute;">&oacute;</span>'''
| '''<span title="&amp;Ocirc;">&Ocirc;</span>'''
| '''<span title="&amp;ocirc;">&ocirc;</span>'''
| '''<span title="&amp;OElig;">&OElig;</span>'''
| '''<span title="&amp;oelig;">&oelig;</span>'''
| '''<span title="&amp;Ograve;">&Ograve;</span>'''
| '''<span title="&amp;ograve;">&ograve;</span>'''
| '''<span title="&amp;oline;">&oline;</span>'''
| '''<span title="&amp;Omega;">&Omega;</span>'''
| '''<span title="&amp;omega;">&omega;</span>'''
| '''<span title="&amp;Omicron;">&Omicron;</span>'''
| '''<span title="&amp;omicron;">&omicron;</span>'''
| '''<span title="&amp;oplus;">&oplus;</span>'''
| '''<span title="&amp;or;">&or;</span>'''
| '''<span title="&amp;ordf;">&ordf;</span>'''
| '''<span title="&amp;ordm;">&ordm;</span>'''
| '''<span title="&amp;Oslash;">&Oslash;</span>'''
| '''<span title="&amp;oslash;">&oslash;</span>'''
| '''<span title="&amp;Otilde;">&Otilde;</span>'''
| '''<span title="&amp;otilde;">&otilde;</span>'''
| '''<span title="&amp;otimes;">&otimes;</span>'''
| '''<span title="&amp;Ouml;">&Ouml;</span>'''
|- align="center"
| '''<span title="&amp;ouml;">&ouml;</span>'''
| '''<span title="&amp;para;">&para;</span>'''
| '''<span title="&amp;part;">&part;</span>'''
| '''<span title="&amp;permil;">&permil;</span>'''
| '''<span title="&amp;perp;">&perp;</span>'''
| '''<span title="&amp;Phi;">&Phi;</span>'''
| '''<span title="&amp;phi;">&phi;</span>'''
| '''<span title="&amp;Pi;">&Pi;</span>'''
| '''<span title="&amp;pi;">&pi;</span>'''
| '''<span title="&amp;piv;">&piv;</span>'''
| '''<span title="&amp;plusmn;">&plusmn;</span>'''
| '''<span title="&amp;pound;">&pound;</span>'''
| '''<span title="&amp;prime;">&prime;</span>'''
| '''<span title="&amp;Prime;">&Prime;</span>'''
| '''<span title="&amp;prod;">&prod;</span>'''
| '''<span title="&amp;prop;">&prop;</span>'''
| '''<span title="&amp;Psi;">&Psi;</span>'''
| '''<span title="&amp;psi;">&psi;</span>'''
| '''<span title="&amp;quot;">&quot;</span>'''
| '''<span title="&amp;radic;">&radic;</span>'''
| '''<span title="&amp;rang;">&rang;</span>'''
| '''<span title="&amp;raquo;">&raquo;</span>'''
| '''<span title="&amp;rarr;">&rarr;</span>'''
| '''<span title="&amp;rArr;">&rArr;</span>'''
| '''<span title="&amp;rceil;">&rceil;</span>'''
| '''<span title="&amp;rdquo;">&rdquo;</span>'''
| '''<span title="&amp;real;">&real;</span>'''
| '''<span title="&amp;reg;">&reg;</span>'''
| '''<span title="&amp;rfloor;">&rfloor;</span>'''
| '''<span title="&amp;Rho;">&Rho;</span>'''
| '''<span title="&amp;rho;">&rho;</span>'''
| '''<span title="&amp;rlm;">&rlm;</span>'''
|- align="center"
| '''<span title="&amp;rsaquo;">&rsaquo;</span>'''
| '''<span title="&amp;rsquo;">&rsquo;</span>'''
| '''<span title="&amp;sbquo;">&sbquo;</span>'''
| '''<span title="&amp;Scaron;">&Scaron;</span>'''
| '''<span title="&amp;scaron;">&scaron;</span>'''
| '''<span title="&amp;sdot;">&sdot;</span>'''
| '''<span title="&amp;sect;">&sect;</span>'''
| '''<span title="&amp;shy;">&shy;</span>'''
| '''<span title="&amp;Sigma;">&Sigma;</span>'''
| '''<span title="&amp;sigma;">&sigma;</span>'''
| '''<span title="&amp;sigmaf;">&sigmaf;</span>'''
| '''<span title="&amp;sim;">&sim;</span>'''
| '''<span title="&amp;spades;">&spades;</span>'''
| '''<span title="&amp;sub;">&sub;</span>'''
| '''<span title="&amp;sube;">&sube;</span>'''
| '''<span title="&amp;sum;">&sum;</span>'''
| '''<span title="&amp;sup;">&sup;</span>'''
| '''<span title="&amp;sup1;">&sup1;</span>'''
| '''<span title="&amp;sup2;">&sup2;</span>'''
| '''<span title="&amp;sup3;">&sup3;</span>'''
| '''<span title="&amp;supe;">&supe;</span>'''
| '''<span title="&amp;szlig;">&szlig;</span>'''
| '''<span title="&amp;Tau;">&Tau;</span>'''
| '''<span title="&amp;tau;">&tau;</span>'''
| '''<span title="&amp;there4;">&there4;</span>'''
| '''<span title="&amp;Theta;">&Theta;</span>'''
| '''<span title="&amp;theta;">&theta;</span>'''
| '''<span title="&amp;thetasym;">&thetasym;</span>'''
| '''<span title="&amp;thinsp;">&thinsp;</span>'''
| '''<span title="&amp;THORN;">&THORN;</span>'''
| '''<span title="&amp;thorn;">&thorn;</span>'''
| '''<span title="&amp;tilde;">&tilde;</span>'''
|- align="center"
| '''<span title="&amp;times;">&times;</span>'''
| '''<span title="&amp;trade;">&trade;</span>'''
| '''<span title="&amp;Uacute;">&Uacute;</span>'''
| '''<span title="&amp;uacute;">&uacute;</span>'''
| '''<span title="&amp;uarr;">&uarr;</span>'''
| '''<span title="&amp;uArr;">&uArr;</span>'''
| '''<span title="&amp;Ucirc;">&Ucirc;</span>'''
| '''<span title="&amp;ucirc;">&ucirc;</span>'''
| '''<span title="&amp;Ugrave;">&Ugrave;</span>'''
| '''<span title="&amp;ugrave;">&ugrave;</span>'''
| '''<span title="&amp;uml;">&uml;</span>'''
| '''<span title="&amp;upsih;">&upsih;</span>'''
| '''<span title="&amp;Upsilon;">&Upsilon;</span>'''
| '''<span title="&amp;upsilon;">&upsilon;</span>'''
| '''<span title="&amp;Uuml;">&Uuml;</span>'''
| '''<span title="&amp;uuml;">&uuml;</span>'''
| '''<span title="&amp;weierp;">&weierp;</span>'''
| '''<span title="&amp;Xi;">&Xi;</span>'''
| '''<span title="&amp;xi;">&xi;</span>'''
| '''<span title="&amp;Yacute;">&Yacute;</span>'''
| '''<span title="&amp;yacute;">&yacute;</span>'''
| '''<span title="&amp;yen;">&yen;</span>'''
| '''<span title="&amp;yuml;">&yuml;</span>'''
| '''<span title="&amp;Yuml;">&Yuml;</span>'''
| '''<span title="&amp;Zeta;">&Zeta;</span>'''
| '''<span title="&amp;zeta;">&zeta;</span>'''
| '''<span title="&amp;zwj;">&zwj;</span>'''
| '''<span title="&amp;zwnj;">&zwnj;</span>'''
|}
 
{| class="wikitable"
! Description
! width="40%" | You type
! width="40%" | You get
|-
| Copyright symbol
| class="mw-code" | &amp;copy;
|
:::'''&copy;'''
|-
| Greek delta letter symbol
| class="mw-code" |&amp;delta;
|
:::'''&delta;'''
|-
| Euro currency symbol
| class="mw-code" |&amp;euro;
|
:::'''&euro;'''
|}
 
== HTML tags and symbol entities displayed themselves (with and without interpreting them) ==
 
:<code>&amp;amp;euro;</code> &nbsp;&rarr; '''&amp;euro;'''
 
:<code>&lt;span style="color: red; text-decoration: line-through;"> Typo to be corrected&lt;/span></code> &nbsp;&rarr; '''<span style="color: red; text-decoration: line-through;"> Typo to be corrected</span>'''
 
:<code> <nowiki>&amp;lt;span style="color: red; text-decoration: line-through;">Typo to be corrected</span></nowiki></code> &nbsp;&rarr; '''&lt;span style="color: red; text-decoration: line-through;"> Typo to be corrected&lt;/span>'''
 
=== Nowiki for HTML ===
 
<<nowiki/>nowiki /> can prohibit (HTML) tags:
* <nowiki><<</nowiki>nowiki />pre> &nbsp;&rarr; <<nowiki/>pre>
But ''not'' &amp; symbol escapes:
* &<<nowiki/>nowiki />amp; &nbsp;&rarr; &amp;
 
To print &amp; symbol escapes as text, use "<code>&amp;amp;</code>" to replace the "&" character (eg. type "<code>&amp;amp;nbsp;</code>", which results in "<code>&amp;nbsp;</code>")
 
== Code Formatting ==
 
* Use <tt>syntaxhighlight</tt> with option "cpp" to highlight Config (see example below)
* Use '''tab alignment''' in Config - '''not''' spaces
* Keep some space in Config, e.g: <syntaxhighlight lang="cpp">
class exampleClass
{
stringValue="value"; // bad
stringValue = "value"; // good
 
arrayValue = {0,0.5,0,1}; // bad
arrayValue = { 0, 0.5, 0, 1 }; // good
};
</syntaxhighlight>
** Before and after <tt>=</tt>
** In Array definitions
** Try to align a batch of comments together ('''with tabs''')
 
{{Informative | If you have to put an equal sign (<tt>{{=}}</tt>) inside a template (<tt>{{ }}</tt>), use the [[Template:=|equal template]]: <tt><nowiki>{{=}}</nowiki></tt>.}}
 
{| class="wikitable" width = "100%"
|-
! Description !! You type !! You get
|-
| Inline Code || <pre>{{Inline code|Inline code}}</pre> || {{Inline code|Inline code}}
|-
| Code || <pre><code>Code</code></pre> || <code>Code</code>
|-
| One-line Code Comment || <pre>{{cc|Code comment}}</pre> || {{cc|Code comment}}
|-
| Code Comment || <pre>{{codecomment|Code comment}}</pre> || {{codecomment|Code comment}}
|-
| Syntaxhighlight<br>"cpp" = C++ highlight || <pre><syntaxhighlight lang="cpp">
class exampleClass
{
value1 = 1;
value2 = "value2";
};
</syntaxhighlight></pre>
| <syntaxhighlight lang="cpp">
class exampleClass
{
value1 = 1;
value2 = "value2";
};
</syntaxhighlight>
|}
 
== Lists ==
 
Do not leave blank lines between items in a list unless there is a reason to do so, since this causes the MediaWiki software to interpret each item as beginning a new list.
 
=== Unordered lists ===
 
<table style="table-layout:fixed; width:100%; margin-top:0;margin-left:0; border-width:medium; padding:0;"><tr>
<th scope="col" style="width:50%;">Markup</th>
<th scope="col" style="width:50%;">Renders as
</th></tr>
<tr>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid none none solid;border-color:#ddd; padding:9px 5px 5px; vertical-align:top;"><pre style="margin:0;border:none;padding:0; word-wrap:break-word; white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;white-space:pre-wrap;">* Item1
* Item2
* Item3
* Item4
** Sub-item 4 a)
*** Sub-item 4 a) 1.
**** Sub-item 4 a) 1. i)
**** Sub-item 4 a) 1. ii)
** Sub-item 4 b)
* Item5</pre>
</td>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid solid none solid;border-color:#ddd; padding:5px; vertical-align:top;"><div style="">
<p></p>
<ul><li>Item1</li>
<li>Item2</li>
<li>Item3</li>
<li>Item4
<ul><li>Sub-item 4 a)
<ul><li>Sub-item 4 a) 1.
<ul><li>Sub-item 4 a) 1. i)</li>
<li>Sub-item 4 a) 1. ii)</li></ul></li></ul></li>
<li>Sub-item 4 b)</li></ul></li>
<li>Item5</li></ul>
</div>
</td></tr>
<tr>
<td style="width:50%; border-width:1px;border-style:solid none none none;border-color:#ddd; padding:5px; vertical-align:top;"></td>
<td style="width:50%; border-width:1px;border-style:solid none none none;border-color:#ddd; padding:5px; vertical-align:top;"></td></tr></table>
 
====  Unordered, multi column, list ====
 
<table style="table-layout:fixed; width:100%; margin-top:0;margin-left:0; border-width:medium; padding:0;"><tr>
<th scope="col" style="width:50%;">Markup</th>
<th scope="col" style="width:50%;">Renders as
</th></tr>
<tr>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid none none solid;border-color:#ddd; padding:9px 5px 5px; vertical-align:top;"><pre style="margin:0;border:none;padding:0; word-wrap:break-word; white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;white-space:pre-wrap;">
<div style="columns: 3">
* {{arma3}}
* {{arma2}}
* {{arma}}
* {{ofp}}
</div></pre>
</td>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid solid none solid;border-color:#ddd; padding:5px; vertical-align:top;"><div style="">
<p></p>
<div style="columns: 3">
* {{arma3}}
* {{arma2}}
* {{arma}}
* {{ofp}}
</div>
</td></tr>
<tr>
<td style="width:50%; border-width:1px;border-style:solid none none none;border-color:#ddd; padding:5px; vertical-align:top;"></td>
<td style="width:50%; border-width:1px;border-style:solid none none none;border-color:#ddd; padding:5px; vertical-align:top;"></td></tr></table>
 
=== Ordered lists ===
 
<table style="table-layout:fixed; width:100%; margin-top:0;margin-left:0; border-width:medium; padding:0;"><tr>
<th scope="col" style="width:50%;">Markup</th>
<th scope="col" style="width:50%;">Renders as
</th></tr>
<tr>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid none none solid;border-color:#ddd; padding:9px 5px 5px; vertical-align:top;"><pre style="margin:0;border:none;padding:0; word-wrap:break-word; white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;white-space:pre-wrap;"># Item1
# Item2
# Item3
# Item4
## Sub-item 1
### Sub-sub-item
#### Sub-sub-sub-item
## Sub-item 2
# Item5
</pre>
</td>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid solid none solid;border-color:#ddd; padding:5px; vertical-align:top;"><div style="">
<p></p>
<ol><li>Item1</li>
<li>Item2</li>
<li>Item3</li>
<li>Item4
<ol><li>Sub-item 1
<ol><li>Sub-sub-item
<ol><li>Sub-sub-sub-item</li></ol></li></ol></li>
<li>Sub-item 2</li></ol></li>
<li>Item5</li></ol>
</div>
</td></tr>
<tr>
<td style="width:50%; border-width:1px;border-style:solid none none none;border-color:#ddd; padding:5px; vertical-align:top;"></td>
<td style="width:50%; border-width:1px;border-style:solid none none none;border-color:#ddd; padding:5px; vertical-align:top;"></td></tr></table>
 
=== Description lists ===
 
To list terms and definitions, start a new line with a semicolon (;) followed by the term. Then, type a colon (:) followed by a definition. The format can also be used for other purposes, such as make and models of vehicles, etc.
 
''Description lists''<!--HTML5 name--> (formerly ''definition lists''<!--HTML4 name-->, and a.k.a. ''association lists''<!--draft HTML5 name-->) consist of group names corresponding to values. Group names (terms) are in bold. Values (definitions) are indented. Each group <em>must</em> include one or more definitions. For a single or first value, the <code>:</code> can be placed on the same line after <code>;</code> – but subsequent values must be placed on separate lines.
 
'''Do not use a semicolon (;) simply to bold a line without defining a value using a colon (:). This usage renders invalid HTML5 and creates issues with screen readers.'''
 
<table style="table-layout:fixed; width:100%; margin-top:0;margin-left:0; border-width:medium; padding:0;"><tr>
<th scope="col" style="width:50%;">Markup</th>
<th scope="col" style="width:50%;">Renders as
</th></tr>
<tr>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid none none solid;border-color:#ddd; padding:9px 5px 5px; vertical-align:top;"><pre style="margin:0;border:none;padding:0; word-wrap:break-word; white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;white-space:pre-wrap;">; Term : Definition1</pre>
</td>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid solid none solid;border-color:#ddd; padding:5px; vertical-align:top;"><div style="">
<p></p>
<dl><dt>Term&nbsp;</dt>
<dd>Definition1</dd></dl>
</div>
</td></tr>
<tr>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid none none solid;border-color:#ddd; padding:9px 5px 5px; vertical-align:top;"><pre style="margin:0;border:none;padding:0; word-wrap:break-word; white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;white-space:pre-wrap;">; Term
: Definition1
: Definition2
: Definition3
: Definition4</pre>
</td>
<td style="width:50%; background:#f9f9f9; border-width:1px;border-style:solid solid none solid;border-color:#ddd; padding:5px; vertical-align:top;"><div style="">
<p></p>
<dl><dt>Term</dt>
<dd>Definition1</dd>
<dd>Definition2</dd>
<dd>Definition3</dd>
<dd>Definition4</dd></dl>
</div>
</td></tr>
<tr>
<td style="width:50%; border-width:1px;border-style:solid none none none;border-color:#ddd; padding:5px; vertical-align:top;"></td>
<td style="width:50%; border-width:1px;border-style:solid none none none;border-color:#ddd; padding:5px; vertical-align:top;"></td></tr></table>
 
HTML equivalent: <nowiki><dl>, <dt> <dd>, <dl></nowiki>
 
 
== Links ==
 
=== Internal Links ===
 
In most wikis, internal links are used in wikitext markup instead of regular urls to simplify linking and reading
 
{| class="wikitable" width = "100%"
! Description
! width="40%" | You type
! width="40%" | You get
|-
| Internal link
| <pre>Arma is made by [[Bohemia Interactive]].</pre>
| Arma is made by [[Bohemia Interactive]].
|-
| Renamed link
| <pre>Ylands is also made by [[Bohemia Interactive|BI]].</pre>
| Ylands is also made by [[Bohemia Interactive|BI]].
|-
! colspan="3" | Auto renamed links (pipe trick)
|-
| Auto renamed link (pipe trick)
| <pre>[[createTrigger (VBS1)|]]</pre>
| [[createTrigger (VBS1)|createTrigger]]
|-
| Automatically hide stuff in parentheses
| <pre>[[createTrigger (VBS1)|]]</pre>
| [[createTrigger (VBS1)|createTrigger]]
|-
| Automatically hide the comma and following text
| <pre>[[Seattle, Washington|]]</pre>
| [[Seattle, Washington|Seattle]]
|-
| Automatically hide namespace
| <pre>[[Wikipedia:Village pump|]]</pre>
| [[Wikipedia:Village pump|Village pump]]
|-
| Or both
| <pre>[[Wikipedia:Manual of Style (headings)|]]</pre>
| [[Wikipedia:Manual of Style (headings)|Manual of Style]]
|-
| Does not work for section links
| <pre>[[Wikipedia:Manual of Style#Links|]]</pre>
|<nowiki> [[Wikipedia:Manual of Style#Links|]]</nowiki>
|-
|}
 
==== Link to a section of a page ====
You can add the specific section you want to link by adding the seciton title to the link after a # (hash).
{| class="wikitable" width = "100%"
!Description !! You type !! You get
|-
| Link to a section within another page
| <pre>[[Wikipedia:Manual of Style#Italics]]</pre>
| [[Wikipedia:Manual of Style#Italics]]
|-
| Piped link to a section within another page.
| <pre>[[Wikipedia:Manual of Style#Italics|Italics]]</pre>
| [[Wikipedia:Manual of Style#Italics|Italics]].
|-
|}
 
==== Blended links ====
{| class="wikitable" width = "100%"
! Desctiption !! You type !! You get
|-
| Blending active
| <pre>San Francisco also has [[public transport]]ation. Examples include [[bus]]es, [[taxicab]]s, and [[tram]]s.</pre>
| San Francisco also has [[public transport]]ation. Examples include [[bus]]es, [[taxicab]]s, and [[tram]]s.
|-
| Blending supressed
| <pre>A [[micro-]]<nowiki />second.</pre>
| A [[micro-]]<nowiki/>second.
|-
|}
 
=== Redirects ===
 
Redirects are used to redirect specific pages to another page.
{| class="wikitable" width = "100%"
! Description !! You type
|-
|Redirect to an article
|<code><nowiki>#REDIRECT [[United States]] </nowiki></code>
|-
|Redirect to a section
|<code><nowiki>#REDIRECT [[United States#History]]</nowiki></code>
|}
 
=== Link to another namespace ===
 
{| class="wikitable" width = "100%"
!What you type
!What it looks like
|-
|
<code><nowiki>See the [[Wikipedia:Manual of Style]].</nowiki></code>
|
See the [[Wikipedia:Manual of Style]].
|}
 
=== Categories ===
 
{| class="wikitable" width = "100%"
!Description
!You type
!You get
|-
| Add article to category
| <code><nowiki>[[Category:Character sets]]</nowiki></code>
|
|-
| Link to a category
| <code><nowiki>[[:Category:Character sets]]</nowiki></code>
| [[:Category:Character sets]]
|-
| Without prefix.
| <code><nowiki>[[:Category:Character sets|]]</nowiki></code>
| [[:Category:Character sets|Character sets]]
|}
 
=== External links ===
 
External links link to external websites other than the Biki. These links are in url format.
 
{| class="wikitable" width = "100%"
!Description
!You type
!You get
|-
| Named link with an external link icon
| <code><nowiki>[http://www.wikipedia.org Wikipedia]</nowiki></code>
| [http://www.wikipedia.org Wikipedia]
|-
| Unnamed link
 
(Used only within article body for footnotes)
|
<code><nowiki>[http://www.wikipedia.org]</nowiki></code>
|
[http://www.wikipedia.org]
|-
| Bare URL
 
(Bad style)
 
use <nowiki>&lt;nowiki&gt;</nowiki>&lt;/nowiki&gt; to keep this bad style from showing
|
<code><nowiki>http://www.wikipedia.org</nowiki></code>
|
http://www.wikipedia.org
|-
|
Link without arrow
 
(Not often used)
|
<code><nowiki><span class="plainlinks">[http://www.wikipedia.org Wikipedia]</span></nowiki></code>
|
<span class="plainlinks"> [http://www.wikipedia.org Wikipedia]</span>
|}
 
== Images ==
 
{| class="wikitable" width = "100%"
!Description
!You type
!You get
|-
| Simple image without description
| <code><nowiki>[[Image:Logo_A3_black.png]] or [File:Logo_A3_black.png]]</nowiki> </code>
| [[Image:Logo_A3_black.png]]
|-
| Thumb image with description, defined size and aligned right. Size can by any number. Alignment can be (left, right and center)
| <code><nowiki>[[Image:Logo_A3_black.png|thumb|right|100px|Some description]]</nowiki></code>
| [[Image:Logo_A3_black.png|thumb|right|100px|Some description]]
|}
 
== Tables ==
 
There are multiple ways to make tables in wikitext. Recommended are:
* Table tool in the text editor
* [https://www.tablesgenerator.com/mediawiki_tables Table Generator]
 
{{Informative|Make sure the raw text is well formatted so it is easier to edit later.}}
 
== Useful templates ==
 
{{Informative|To find out more about how templates work, read [https://www.mediawiki.org/wiki/Help:Templates Media Wiki: Help: Template]}}
 
{| class="wikitable"  width = "100%"
! Template || Code || Result
|-
| [[Template:errors]]
| <pre>{{errors|reason}}</pre>
|
{{Messagebox
| '''This article contains at least [[:Category:ERRORS|an error]]:''' reason.<br>
<small>If you can fix the page, please remove the {{<nowiki/>errors}} tag afterwards.</small>
| ‼️
| red
}}
|-
| [[Template:delete]]
| <pre>{{delete|reason}}</pre>
|
{{Messagebox|'''This article has been submitted for''' <big>deletion</big>'''.''' '''The reason given was:''' reason'''.'''|🗙|#F00}}
|-
| [[Template:Feature arma3]]
| <pre>{{Feature arma3|text}}</pre>
| {{Feature arma3|text}}
|-
| [[Template:Feature arma3contact]]
| <pre>{{Feature arma3contact}}</pre>
| {{Messagebox|This content is exclusive to the [[Arma 3 Contact]] Expansion.|[[File:arma3_Contact_logo_black.png|600px]]|#81AED3}}
|-
| [[Template:Feature arma3contact]]
| <pre>{{Feature arma3contact|
You gotta come down here with an attitude,
actin' all big and bad.
And what the hell is that smell?}}</pre>
| {{Messagebox|You gotta come down here with an attitude, actin' all big and bad. And what the hell is that smell?|[[File:arma3_Contact_logo_black.png|600px]]|#81AED3}}
|-
| [[Template:Feature Eden Editor]]
| <pre>{{Feature Eden Editor|
Everyone is playing on this Military-themed Mario Maker :D}}</pre>
| {{Feature Eden Editor|Everyone is playing on this Military-themed Mario Maker :D}}
|-
| [[Template:Feature AFM]]
| <pre>{{Feature AFM}}</pre>
| {{Feature AFM}}
|-
| [[Template:Feature AFM]]
| <pre>{{Feature AFM|text}}</pre>
| {{Feature AFM|text}}
|-
| [[Template:Feature dayz]]
| <pre>{{Feature dayz|text}}</pre>
| {{Feature dayz|text}}
|-
| [[Template:GVI]]
| <pre>{{GVI|arma3|version}}</pre>
| {{GVI|arma3|dev}}
|-
| [[Template:Informative]]
| <pre>{{Informative|text}}</pre>
| {{Informative|text}}
|-
| [[Template:Important]]
| <pre>{{Important|important text!}}</pre>
| {{Important|important text!}}
|-
| [[Template:Warning]]
| <pre>{{Warning|text}}</pre>
| {{Warning|text}}
|-
| [[Template:note]]
| <pre>{{note|text}}</pre>
| {{note|text}}
|-
| [[Template:unbalanced]]
| <pre>{{unbalanced}}</pre>
| {{Messagebox|This article may be unbalanced towards certain viewpoints.|⚖|#555}}
|-
| [[Template:cn]]
| <pre>{{cn}}</pre>
| <sup><nowiki>[</nowiki>''[[citation needed]]''<nowiki>]</nowiki></sup>
|-
| [[Template:example]]
| <pre>{{example|text|title}}</pre>
| {{example|text|title}}
|-
| [[Template:merge]]
| <pre>{{merge|article}}</pre>
| {{Messagebox|This article has been proposed to merge with [[article]].|⇄|blueviolet}}
|-
| [[Template:wip]]
| <pre>{{wip}}</pre>
| {{Messagebox|This article is a '''work in progress'''!|🏗|dodgerblue}}
|-
| [[Template:AnswerMe]]
| <pre>{{AnswerMe|question}}</pre>
| {{Messagebox|'''Article contains open question: «&nbsp;''question''&nbsp;»<br>
Once the question is answered, please remove the <tt><nowiki>{{AnswerMe}}</nowiki></tt> tag.|?|#BB8}}
|-
| [[Template:Stub]]
| <pre>{{Stub}}</pre>
| <div class="notice metadata" id="stub">''This article is a [[:Category:Stubs|Stub]]. You can help BI Community Wiki by <span class="plainlinks">[{{fullurl:{{FULLPAGENAME}}|action=edit}} expanding it]</span>.''</div>
|-
| [[Template:quote]]
| <pre>{{quote|Gastovski, out!|James Gastovski
|https://www.youtube.com/watch?v{{=}}TGKFY1QiIGA}}</pre>
| {{quote|Gastovski, out!|James Gastovski|https://www.youtube.com/watch?v{{=}}TGKFY1QiIGA}}
|-
| [[Template:ServerExec]]
| <pre>{{ServerExec}}</pre>
| {{ServerExec}}
|-
| [[Template:outdated]]
| <pre>{{outdated}}</pre>
| {{outdated}}
|}
 
 
[[Category:Community Wiki]]

Revision as of 03:24, 30 October 2020


The text editor comes with some basic text formatting tips

Text formatting markup

Description You type You get
Character (inline) formatting – applies anywhere
Italic text
''italic''

italic

Bold text
'''bold'''

bold

Bold and italic
'''''bold & italic'''''

bold & italic

Colored text
<span style="color: red;">Colour</span>

Colour

Spoiler
<spoiler text="Click me!">spoiler</spoiler>

spoiler

Escape wiki markup
<nowiki> no ''markup''</nowiki>
no ''markup''
Small chunks of source code within a line of normal text.

Code is displayed in a monospace font.

function <code>int m2()</code> is nice.
function int m2() is nice.
Small text
Text can be made <small>smaller like this</small>
Text can be made smaller like this
Big text
Text can be made <big>bigger like this</big>
Text can be made bigger like this
Teletype
Highlight <tt>TAG_someVariable</tt> in a text
Highlight TAG_someVariable in a text
Section formatting – only at the beginning of the line
Section Headings of different levels
== Level 2 ==

=== Level 3 ===

==== Level 4 ====

===== Level 5 =====

====== Level 6 ======

Template:note

Level 2



Level 3


Level 4


Level 5


Level 6


Horizontal rule
 Text before
----
 Text after
Text before

Text after
Line Breaks
A single newline here has no effect on the layout.

But an empty line starts a new paragraph, or ends a list or an indented part.
Lines can be forced to break <br> like this.
A single newline here has no effect on the layout.

But an empty line starts a new paragraph,

or ends a list or an indented part.

Lines can be forced to break

like this.

Indent text
: Single indent
:: Double indent
::::: Multiple indent

Template:note

Single indent
Double indent
Multiple indent
Mixture of different types of list
# one
# two
#* two point one
#* two point two
# three
#; three item one
#: three def one
# four
#: four def one
#: this looks like a continuation
#: and is often used
#: instead <br />of <nowiki><br /></nowiki>
# five
## five sub 1
### five sub 1 sub 1
## five sub 2

Template:note

  1. one
  2. two
    • two point one
    • two point two
  3. three
    three item one
    three def one
  4. four
    four def one
    this looks like a continuation
    and is often used
    instead
    of <br />
  5. five
    1. five sub 1
      1. five sub 1 sub 1
    2. five sub 2
Preformatted text
Start each line with a space.
 Text is '''preformatted''' and
 ''markups'' '''''can''''' be done.

Template:note

Start each line with a space.

Text is preformatted and
markups can be done.
Preformatted text blocks
 <nowiki>
Start with a space in the first column,
(before the <tvar|1><nowiki></>).


Then your block format will be
    maintained.


This is good for copying in code blocks:


def function():
    """ documentation string"""

    if True:
        print True
    else:
        print False<nowiki>
       Start with a space in the first column,
       (before the <nowiki>).
       
       
       Then your block format will be
           maintained.
       
       
       This is good for copying in code blocks:
       
       
       def function():
           """ documentation string"""
       
           if True:
               print True
           else:
               print False
       

HTML tags

Description You type You get
Inserted
(Displays as underline in most browsers)
<ins> Inserted</ins>

 or

<u> Underline</u>

Inserted

or

Underline

Deleted
(Displays as strikethrough in most browsers)
<s> Struck out</s>

 or

<del> Deleted</del>

Struck out

or

Deleted

Blockquotes
 Text before
<blockquote> Blockquote</blockquote>
 Text after
Text before

Blockquote

Text after
Quotes
<q> This is a quotation</q>

Template:note

This is a quotation
Comment

<!-- This is a comment -->
Comments are visible only
in the edit zone.

Comments are visible only in the edit zone.

Completely preformatted text
<pre>

Text is '''preformatted''' and
''markups'' '''''cannot''''' be done</pre>

Template:note


Text is '''preformatted''' and
''markups'' '''''cannot''''' be done
Customized preformatted text
<pre style="color: red">

Text is '''preformatted'''
with a style and
''markups'' '''''cannot''''' be done
</pre>

Template:note


Text is '''preformatted'''
with a style and
''markups'' '''''cannot''''' be done

continued:

Description You type You get
Default preformatted text has a CSS attribute (white-space: pre-wrap;) to wrap the text according to available width
<pre>
 This long sentence is used to demonstrate text wrapping. This additional sentence makes the text even longer. This additional sentence makes the text even longer.
</pre>
 This long sentence is used to demonstrate text wrapping. This additional sentence makes the text even longer. This additional sentence makes the text even longer.
Customized preformatted text with disabled text wrapping
<pre style="white-space: pre;">
 This long sentence is used to demonstrate text wrapping. This additional sentence makes the text even longer. This additional sentence makes the text even longer.
</pre>
 This long sentence is used to demonstrate text wrapping. This additional sentence makes the text even longer. This additional sentence makes the text even longer.

Inserting symbols

Symbols and other special characters not available on your keyboard can be inserted in a multitude of ways. Many Operating Systems and browsers allow you to insert special characters through a menu option or Operating System panel.


As a last resort, you can use a special sequence of characters. Those sequences are called HTML entities. For example, the following sequence (entity) &rarr; when inserted will be shown as right arrow HTML symbol → and &mdash; when inserted will be shown as an em dash HTML symbol —.


Template:note

HTML symbol entities
Á á Â â ´ Æ æ À à Α α & Å å Ã ã Ä ä Β β ¦ Ç ç ¸ ¢
Χ χ ˆ © ¤ ° Δ δ ÷ É é Ê ê È è Ε ε Η η
Ð ð Ë ë ƒ ½ ¼ ¾ Γ γ > Í í Î î ¡ Ì ì Ι ι
¿ Ï ï Κ κ Λ λ « < ¯ µ · Μ μ  
¬ Ñ ñ Ν ν Ó ó Ô ô Œ œ Ò ò Ω ω Ο ο ª º Ø ø Õ õ Ö
ö Φ φ Π π ϖ ± £ Ψ ψ " » ® Ρ ρ
Š š § ­ Σ σ ς ¹ ² ³ ß Τ τ Θ θ ϑ Þ þ ˜
× Ú ú Û û Ù ù ¨ ϒ Υ υ Ü ü Ξ ξ Ý ý ¥ ÿ Ÿ Ζ ζ
Description You type You get
Copyright symbol &copy;
©
Greek delta letter symbol &delta;
δ
Euro currency symbol &euro;

HTML tags and symbol entities displayed themselves (with and without interpreting them)

&amp;euro;  → &euro;
<span style="color: red; text-decoration: line-through;"> Typo to be corrected</span>  → Typo to be corrected
&lt;span style="color: red; text-decoration: line-through;">Typo to be corrected</span>  → <span style="color: red; text-decoration: line-through;"> Typo to be corrected</span>

Nowiki for HTML

<nowiki /> can prohibit (HTML) tags:

  • <<nowiki />pre>  → <pre>
But not & symbol escapes:
  • &<nowiki />amp;  → &

To print & symbol escapes as text, use "&amp;" to replace the "&" character (eg. type "&amp;nbsp;", which results in "&nbsp;")

Code Formatting

  • Use syntaxhighlight with option "cpp" to highlight Config (see example below)
  • Use tab alignment in Config - not spaces
  • Keep some space in Config, e.g:
    class exampleClass
    {
    	stringValue="value";			// bad
    	stringValue = "value";			// good
    
    	arrayValue = {0,0.5,0,1};		// bad
    	arrayValue = { 0, 0.5, 0, 1 };	// good
    };
    
    • Before and after =
    • In Array definitions
    • Try to align a batch of comments together (with tabs)
If you have to put an equal sign (=) inside a template ({{ }}), use the equal template: {{=}}.
Description You type You get
Inline Code
{{Inline code|Inline code}}
Inline code
Code
<code>Code</code>
Code
One-line Code Comment
{{cc|Code comment}}
// Code comment
Code Comment
{{codecomment|Code comment}}
Code comment
Syntaxhighlight
"cpp" = C++ highlight
<syntaxhighlight lang="cpp">
class exampleClass
{
	value1 = 1;
	value2 = "value2";
};
</syntaxhighlight>
class exampleClass
{
	value1 = 1;
	value2 = "value2";
};

Lists

Do not leave blank lines between items in a list unless there is a reason to do so, since this causes the MediaWiki software to interpret each item as beginning a new list.

Unordered lists

Markup Renders as
* Item1
* Item2
* Item3
* Item4
** Sub-item 4 a)
*** Sub-item 4 a) 1.
**** Sub-item 4 a) 1. i)
**** Sub-item 4 a) 1. ii)
** Sub-item 4 b)
* Item5

  • Item1
  • Item2
  • Item3
  • Item4
    • Sub-item 4 a)
      • Sub-item 4 a) 1.
        • Sub-item 4 a) 1. i)
        • Sub-item 4 a) 1. ii)
    • Sub-item 4 b)
  • Item5

Unordered, multi column, list

Markup Renders as
<div style="columns: 3">
* {{arma3}}
* {{arma2}}
* {{arma}}
* {{ofp}}
</div>

  • Arma 3
  • Arma 2
  • Arma
  • Operation Flashpoint

Ordered lists

Markup Renders as
# Item1
# Item2
# Item3
# Item4
## Sub-item 1
### Sub-sub-item
#### Sub-sub-sub-item
## Sub-item 2
# Item5

  1. Item1
  2. Item2
  3. Item3
  4. Item4
    1. Sub-item 1
      1. Sub-sub-item
        1. Sub-sub-sub-item
    2. Sub-item 2
  5. Item5

Description lists

To list terms and definitions, start a new line with a semicolon (;) followed by the term. Then, type a colon (:) followed by a definition. The format can also be used for other purposes, such as make and models of vehicles, etc.

Description lists (formerly definition lists, and a.k.a. association lists) consist of group names corresponding to values. Group names (terms) are in bold. Values (definitions) are indented. Each group must include one or more definitions. For a single or first value, the : can be placed on the same line after ; – but subsequent values must be placed on separate lines.

Do not use a semicolon (;) simply to bold a line without defining a value using a colon (:). This usage renders invalid HTML5 and creates issues with screen readers.

Markup Renders as
; Term : Definition1

Term 
Definition1
; Term
: Definition1
: Definition2
: Definition3
: Definition4

Term
Definition1
Definition2
Definition3
Definition4

HTML equivalent: <dl>, <dt> <dd>, <dl>


Links

Internal Links

In most wikis, internal links are used in wikitext markup instead of regular urls to simplify linking and reading

Description You type You get
Internal link
Arma is made by [[Bohemia Interactive]].
Arma is made by Bohemia Interactive.
Renamed link
Ylands is also made by [[Bohemia Interactive|BI]].
Ylands is also made by BI.
Auto renamed links (pipe trick)
Auto renamed link (pipe trick)
[[createTrigger (VBS1)|]]
createTrigger
Automatically hide stuff in parentheses
[[createTrigger (VBS1)|]]
createTrigger
Automatically hide the comma and following text
[[Seattle, Washington|]]
Seattle
Automatically hide namespace
[[Wikipedia:Village pump|]]
Village pump
Or both
[[Wikipedia:Manual of Style (headings)|]]
Manual of Style
Does not work for section links
[[Wikipedia:Manual of Style#Links|]]
[[Wikipedia:Manual of Style#Links|]]

Link to a section of a page

You can add the specific section you want to link by adding the seciton title to the link after a # (hash).

Description You type You get
Link to a section within another page
[[Wikipedia:Manual of Style#Italics]]
Wikipedia:Manual of Style#Italics
Piped link to a section within another page.
[[Wikipedia:Manual of Style#Italics|Italics]]
Italics.

Blended links

Desctiption You type You get
Blending active
San Francisco also has [[public transport]]ation. Examples include [[bus]]es, [[taxicab]]s, and [[tram]]s.
San Francisco also has public transportation. Examples include buses, taxicabs, and trams.
Blending supressed
A [[micro-]]<nowiki />second.
A micro-second.

Redirects

Redirects are used to redirect specific pages to another page.

Description You type
Redirect to an article #REDIRECT [[United States]]
Redirect to a section #REDIRECT [[United States#History]]

Link to another namespace

What you type What it looks like

See the [[Wikipedia:Manual of Style]].

See the Wikipedia:Manual of Style.

Categories

Description You type You get
Add article to category [[Category:Character sets]]
Link to a category [[:Category:Character sets]] Category:Character sets
Without prefix. [[:Category:Character sets|]] Character sets

External links

External links link to external websites other than the Biki. These links are in url format.

Description You type You get
Named link with an external link icon [http://www.wikipedia.org Wikipedia] Wikipedia
Unnamed link

(Used only within article body for footnotes)

[http://www.wikipedia.org]

[1]

Bare URL

(Bad style)

use <nowiki></nowiki> to keep this bad style from showing

http://www.wikipedia.org

http://www.wikipedia.org

Link without arrow

(Not often used)

<span class="plainlinks">[http://www.wikipedia.org Wikipedia]</span>

Wikipedia

Images

Description You type You get
Simple image without description [[Image:Logo_A3_black.png]] or [File:Logo_A3_black.png]] Logo A3 black.png
Thumb image with description, defined size and aligned right. Size can by any number. Alignment can be (left, right and center) [[Image:Logo_A3_black.png|thumb|right|100px|Some description]]
Some description

Tables

There are multiple ways to make tables in wikitext. Recommended are:

Make sure the raw text is well formatted so it is easier to edit later.

Useful templates

To find out more about how templates work, read Media Wiki: Help: Template
Template Code Result
Template:errors
{{errors|reason}}
‼️
This article contains at least an error: reason.
If you can fix the page, please remove the {{errors}} tag afterwards.
Template:delete
{{delete|reason}}
🗙
This article has been submitted for deletion. The reason given was: reason.
Template:Feature arma3
{{Feature arma3|text}}
Template:Feature arma3
Template:Feature arma3contact
{{Feature arma3contact}}
arma3 Contact logo black.png
This content is exclusive to the Arma 3 Contact Expansion.
Template:Feature arma3contact
{{Feature arma3contact|
You gotta come down here with an attitude,
actin' all big and bad.
And what the hell is that smell?}}
arma3 Contact logo black.png
You gotta come down here with an attitude, actin' all big and bad. And what the hell is that smell?
Template:Feature Eden Editor
{{Feature Eden Editor|
Everyone is playing on this Military-themed Mario Maker :D}}
Template:Feature Eden Editor
Template:Feature AFM
{{Feature AFM}}
Template:Feature AFM
Template:Feature AFM
{{Feature AFM|text}}
Template:Feature AFM
Template:Feature dayz
{{Feature dayz|text}}
Template:Feature dayz
Template:GVI
{{GVI|arma3|version}}
Arma 3 logo black.pngDEV
Template:Informative
{{Informative|text}}
text
Template:Important
{{Important|important text!}}
important text!
Template:Warning
{{Warning|text}}
text
Template:note
{{note|text}}
Template:note
Template:unbalanced
{{unbalanced}}
This article may be unbalanced towards certain viewpoints.
Template:cn
{{cn}}
[citation needed]
Template:example
{{example|text|title}}
Template:example
Template:merge
{{merge|article}}
This article has been proposed to merge with article.
Template:wip
{{wip}}
🏗
This article is a work in progress!
Template:AnswerMe
{{AnswerMe|question}}
?
Article contains open question: « question »
Once the question is answered, please remove the {{AnswerMe}} tag.
Template:Stub
{{Stub}}
Template:quote
{{quote|Gastovski, out!|James Gastovski
|https://www.youtube.com/watch?v{{=}}TGKFY1QiIGA}}
Template:quote
Template:ServerExec
{{ServerExec}}
Template:ServerExec
Template:outdated
{{outdated}}
Template:outdated