Resource icon

XenCarta FAQ

Here's a thread to share knowledge of XenCarta. Please feel free to contribute guides, no matter how basic you feel the task you're describing to be.

Please note there is a XenCarta template repository available here.

Index
Changing the Wiki sidebar width
Fix for (top) and (hide)
Which foreign language translations are available?
H# Heading Code
Number of columns in Wiki Navigation sidebar block
Search Results - Add a Wiki avatar
Sortable Tables HTML
Templates 101
Template Variables - Hello World Example
Template Gotchas
Greetings,
The link seems down for the templates, is there another area to get them?
 
Sortable Tables HTML

XenCarta supports sortable tables, the following wiki code when added into an HTML article will be sortable.

Code:
<table class="sortable">
<tr><th>Name</th><th>Wallaby No</th><th>Captain No</th><th>Caps</th><th>Years</th><th>Position</th></tr>
<tr><td>Frank Row</td><td>11</td><td>1</td><td>3</td><td>1899</td><td>Centre</td></tr>
<tr><td>Bob McCowan</td><td>9</td><td>2</td><td>3</td><td>1899</td><td>Fullback</td></tr>
<tr><td>Stan Wickham</td><td>44</td><td>3</td><td>5</td><td>1903-1905</td><td>Centre</td></tr>
<tr><td>Frank Nicholson</td><td>41</td><td>4</td><td>2</td><td>1903-1904</td><td>Prop</td></tr>
</table>
That is not a wiki that is html. Is there no real Wiki style anything?
 
Using "Wiki-Like [h#]head[/h#] replacement BB code"

When you are writing a BBCode Wiki page, if you have a heading that you would like to show in the table of contents for the page, use the following BBCode

Code:
[h2]Main Heading[/h2]
This is a paragraph of plain text under a major heading

[h3]Sub Heading[/h3]
This is a paragraph of plain text under a sub heading

[h4]Minor Heading[/h4]
This is a paragraph of plain text under a minor heading
Note: h4 and lower do not show on the Table of Contents


Screenshot
View attachment 23802

Hello
Howdo you build the table of content ?
 
Top Bottom