This is a documentation for Board Game Arena: play board games online !
Wiki formatting: Difference between revisions
(mention infoboxes) |
(mention dice) |
||
Line 1: | Line 1: | ||
These are some tips on how to make wiki rules pages display in a readable way on the BGA site beneath a game, with some notes on elements which do not work as expected. Many tags and methods of formatting are completely stripped out by the BGA website when displaying wiki ruleset, but there are some workarounds. | These are some tips on how to make wiki rules pages display in a readable way on the BGA site beneath a game, with some notes on elements which do not work as expected, and useful elements which don't appear to be documented anywhere. Many tags and methods of formatting are completely stripped out by the BGA website when displaying wiki ruleset, but there are some workarounds. | ||
Feel free to add additional issues and advice. | Feel free to add additional issues and advice. | ||
Line 24: | Line 24: | ||
• Discard | • Discard | ||
</pre> | </pre> | ||
==Dice== | |||
Six-sided dice can be displayed during a line of text using the <code><nowiki>{{whiteDie|=6}}</nowiki></code>. | |||
It looks like they have line breaks around them ''unless'' they are part of a bullet or numbered list element, in which case the text flows before and after the die. For example: | |||
* A {{whiteDie|=1}} is known as a "Paco". | |||
==Numbered lists== | ==Numbered lists== |
Revision as of 10:29, 9 April 2022
These are some tips on how to make wiki rules pages display in a readable way on the BGA site beneath a game, with some notes on elements which do not work as expected, and useful elements which don't appear to be documented anywhere. Many tags and methods of formatting are completely stripped out by the BGA website when displaying wiki ruleset, but there are some workarounds.
Feel free to add additional issues and advice.
(This page was created following this forum thread.)
Bullet points
The BGA rules display strips all bullet points, if the regular wiki bullet markup of asterisks is used.
A common solution seems to be to add bullet-point unicode symbols. This also requires lines to be separated by paragraph breaks or <br/> tags, otherwise they all appear on the same line.
• Draw • Play • Discard
• Draw<br/> • Play<br/> • Discard
Dice
Six-sided dice can be displayed during a line of text using the {{whiteDie|=6}}
.
It looks like they have line breaks around them unless they are part of a bullet or numbered list element, in which case the text flows before and after the die. For example:
- A is known as a "Paco".
Numbered lists
Like bullet points, a numbered list in wiki markup (with a "#" before each line) doesn't display correctly. Workarounds are to write out the numbers by hand, with either paragraph breaks or <br/> tags between them:
1. Draw 2. Play 3. Discard
1. Draw<br/> 2. Play<br/> 3. Discard
Headings
A level two heading ("==") will appear with a box around it on the BGA view. A level three heading ("===") will not.
Infoboxes
These are only used by a few game pages, but Template:InfoBox, Template:InfoBoxes and Template:InfoBoxes3 allow game information to be displayed in one, two or three coloured boxes, in a way that also works in the BGA view. They look like this:
Click through to the templates above for usage instructions.
Images
Attempting to specify an image size in image markup (eg. [[File:Marrakech example.jpg|300px]]
) will work in the wiki view, but will cause the image to appear blank in the BGA view (as it tries to display a resized image which does not exist in the directory it's referencing).
A solution is to display images at the default size (meaning that they must also be uploaded at the size you want them to appear), eg:
[[File:Marrakech example.jpg]]
It's also possible to add rollover text if desired:
[[File:Marrakech example.jpg|Example move]]
Also, external links will also work within BGA if you want the image to link to a URL:
[[File:Versions.png|link=https://lumberjacks-studio.com/en/project/trek-12_en/]]
In-article links
Linking to a section within a rules page (eg. [[#endgame|the Endgame phase]]
) will work within the rules on a live game, but not on the gamepanel page (eg. https://boardgamearena.com/gamepanel?game=hanabi#Black_Powder). If the user clicks on such a link on a gamepanel page, the page will simply reload without taking them to that section.
Tables
Table borders are stripped by the BGA display. They can be added back by adding a fixed width border=
to the image markup, eg:
{| class="wikitable" border="2" |- !0-90 |⭐ |- !91-110 |⭐⭐ |- !111-125 |⭐⭐⭐ |}
will display as:
0-90 | ⭐ |
---|---|
91-110 | ⭐⭐ |
111-125 | ⭐⭐⭐ |