-
Hey Guest, looking for Virtua Fighter 5: Ultimate Showdown content? Rest assured that the game is identical to Virtua Fighter 5: Final Showdown so all current resources on here such as Command Lists with frame data, Combo Lists and the Wiki still apply. However, you can expect some VF5US specific changes to come soon!Dismiss Notice
Wiki Syntax
-
When creating and editing Wiki pages, the default forum markup language (BB Codes) may be used. Additionally, this page shows other syntax, and custom templates, that may be used specifically on wiki pages.
Contents
Headings(top)
You can create different level headings to add structure to your wiki page. The level 1 heading is reserved for the page's title, so you may add headings at level 2 or lower. For readability, it is suggested that you do not beyond a level 4 heading. The heading bb codes and their results are shown below:
Code:[h2]Level 2 Heading[/h2]
[h3]Level 3 Heading[/h3]
[h4]Level 4 Heading[/h4]
[h5]Level 5 Heading[/h5]Level 2 Heading(top)
Level 3 Heading(top)
Level 4 Heading(top)
Level 5 Heading(top)
Templates(top)
The following are templates that I created to enhance the presentation of wiki content. The basic syntax for a template is as follows:
Code:[template=template_name] parameter1=value1 | parameter2=value2 | etc [/template]
All parameters are mandatory. If you do not supply a value for a parameter, the template will return the parameter name in its place.
So, in order to use a template you must know its template name and the parameters required. These are all detailed below, however, please note the following:
In the code samples below, the opening and closing "template" tags have spaces inserted around them to prevent the actual template from triggering. To use these, ensure that there are no spaces between the word "template" and the surrounding square brackets.
You cannot nest, or include, templates within each other.
Notes(top)
Use notes to bring attention to, or highlight small parts of, your content. The standard note should be used for a stand-alone note. The side-note should be used in conjunction with surrounding text.
Note(top)
- Template name: note
- Parameter(s): content
- Value(s): any standard post content
Code:[ template=note ]content=Lorem ipsum dolor ...[/ template ]
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Side Note(top)
- Template name: side-note
- Parameter(s): content
- Value(s): any standard post content
Code:[ template=side-note ]content=This is a side note ...[/ template ] Lorem ipsum dolor ...
This is a side note that usually accompanies some surrounding text.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Floating Images(top)
These templates allow you to float an image either to the left or right, so that text in line will naturally flow around the image.
Float Left(top)
- Template name: float-left
- Parameter(s): content
- Value(s): an image (full size or thumbnail).
Code:[ template=float-left ]content=[ATTACH]1719[/ATTACH] [/ template ]Lorem ipsum dolor ...
Float Right(top)
- Template name: float-right
- Parameter(s): content
- Value(s): an image (full size or thumbnail).
Code:[ template=float-right ]content=[ATTACH]1719[/ATTACH] [/ template ]Lorum ipsum dolor ...
Tiles(top)
Use this template to add captions to your thumbnail images.
- Template name: tile
- Parameter(s):
- (1) img;
- (2) cap
- Value(s):
- (1) a thumbnail image;
- (2) the caption text
Code:[ template=tile ]img=[ATTACH]1719[/ATTACH] | cap=Lorum ipsum dolor[/ template ]
Tables(top)
To create a table, you must use three templates.
- table-start
- table-colX (where X is the number of columns = 2, 3, 4, or 5)
- table-end
Let's look at a basic table with 2 columns and 4 rows:
Code:[ template=table-start ][ /template ]
[ template=table-col2 ]cell1=Do | cell2=Ray[/ template ]
[ template=table-col2 ]cell1=Me | cell2=Fa[/ template ]
[ template=table-col2 ]cell1=So | cell2=La[/ template ]
[ template=table-col2 ]cell1=Te | cell2=Do[/ template ]
[ template=table-end ][/ template ]-
DoRay
-
MeFa
-
SoLa
-
TeDo
Or a tabale with 5 columns, and 2 rows:
Code:[ template=table-start ][ /template ]
[ template=table-col5 ]cell1=Do | cell2=Ray | cell3=Me | cell4=Fa | cell5=So[/ template ]
[ template=table-col5 ]cell1=Mon| cell2=Tue | cell3=Wed | cell4=Thu | cell5=Fri[/ template ]
[ template=table-end ][/ template ]-
DoRayMeFaSo
-
MonTueWedThuFri
By default, all columns are created with equal width.
Header Rows(top)
You can make a row appear as a header simply by appending "-hdr" to the column template name.
Code:[ template=table-start ][ /template ]
[ template=table-col2-hdr ]cell1=Do | cell2=Ray[/ template ]
[ template=table-col2 ]cell1=Me | cell2=Fa[/ template ]
[ template=table-col2 ]cell1=So | cell2=La[/ template ]
[ template=table-col2 ]cell1=Te | cell2=Do[/ template ]
[ template=table-end ][/ template ]-
DoRay
-
MeFa
-
SoLa
-
TeDo
You can make any row a "header" this way, and are not limited to just one either.
Left Table(top)
For want of a better description, the "Left-Column" variety of tables are exactly as described above, except that the left-most, or first, column is narrow in width, while the remaining columns are of equal width in the remaining space available. These types of tables are useful if you only have small/key data in the first column (such as the Frames in a punishment chart) -- this saves on real estate and improves readability.
To create this style of table, simply append "left" to "table-colX".
Code:[ template=table-start ][/ template ]
[ template=table-col2-left-hdr ]cell1=Frames | cell2=Action[/ template ]
[ template=table-col2-left ]cell1=10 | cell2=[P][+][G][/ template ]
[ template=table-col2-left ]cell1=11 | cell2=[P][K][/ template ]
[ template=table-col2-left ]cell1=Image | cell2=[ATTACH]1719[/ATTACH] [/ template ]
[ template=table-end ][/ template ]-
FramesAction
-
10
-
11
-
Image
As shown above, the cell contents in your table can be any standard post content. This includes text, images, smileys, etc.
Character Arrays(top)
Use these character arrays to display test results of some input against the entire cast. The cast will be ordered by weight and will display the result of the test as either success, failure or indeterminate (i.e. more information to be provided).
To use the Character Array, you must use three templates:
- chara-array-start
- chara-array-row (as many as required)
- chara-array-end
- Template name: chara-array-row
- Parameter(s): (1) input; (2) ei; (3) el; (4) ao; (5) sa; (6) sh; (7) pa; (8) li; (9) va; (10) la; (11) ka; (12) le; (13) br; (14) go; (15) ak; (16) ja; (17) jn; (18) je; (19) wo; (20) ta
- Value(s):
- (1) standard inline content: text, smilies, etc.
- (2) ~ (20) y, n or i : this will display an icon representing success, failure or info
Code:[ template=chara-array-start ][ /template ]
[ template=chara-array-row ]input=[6_][P] > [3][K]
|ei=i |el=i |ao=i |sa=n |sh=n |pa=n |li=y |va=n |la=y |ka=y |le=y |br=y |go=y |ak=n |ja=n |jn=n |je=n |wo=n |ta=n
[ /template ]
[ template=chara-array-row ]input=[6_][P][K][G] > [3][K]
|ei=n |el=n |ao=n |sa=y |sh=n |pa=n |li=n |va=n |la=n |ka=n |le=n |br=n |go=n |ak=y |ja=y |jn=y |je=y |wo=y |ta=n
[ /template ]
[ template=chara-array-end ][ /template ]-
InputEIELAOSASHPALIVALAKALEBRGOAKJAJNJEWOTA
-
>
-
>
- Loading...