Difference between revisions of "How to Wiki"

From EUSwiki
Jump to: navigation, search
(Tabs)
(Tabs)
Line 154: Line 154:
  
 
== Tabs ==
 
== Tabs ==
Tabs is an extension that provides a handy way to create tables and nested tabs.
+
Tabs is an extension that provides a handy way to create multiple tabs and tables. This is very useful for containing nested information, and can be manipulated depending on your understanding of the mechanism. To learn more about Tabs, [https://www.mediawiki.org/wiki/Extension:Tabs/Usage click here].
 
{|style="width:60%" |
 
{|style="width:60%" |
 
| '''What you enter'''
 
| '''What you enter'''
Line 164: Line 164:
 
:: <nowiki><tab name="Tab#2", index="2">This is also a test</tab></nowiki><br>
 
:: <nowiki><tab name="Tab#2", index="2">This is also a test</tab></nowiki><br>
 
: </tabs>
 
: </tabs>
| <tabs><tab name="Tab#1">This is a test</tab><tab name="Tab#2", index="2">This is also a test</tab></tabs> }
+
| <tabs><tab name="Tab#1">This is a test</tab><tab name="Tab#2", index="2">This is also a test</tab></tabs>  
 +
|}
 +
 
 +
<h3>Nested Tabs</h3>
 +
<tab name="Open me!" collapsed>
 +
Nested Tabs are useful for having large amounts of information without overburdening the layout or flow of your article. <br>The syntax is essentially the same as above
 +
''<nowiki>
 +
<tab name="Open me!"> Contents </tob></nowiki>''
 +
</tab>
 +
 
 +
<h3> Attributes </h3>

Revision as of 11:16, 17 November 2015

Intro

Welcome to EUSWiki, a MediaWiki hosted wikipedia page. All and any help you may need can be found here, but I will try and provide the mere basics here.

Text Editing

For those of you who may know HTML5, woo-hoo! This is similar to that, but not quite. There's a whole host of different syntax, but the same logic applies.


You can format your text by using wiki markup. This consists of normal characters like asterisks, apostrophes or equal signs which have a special function in the wiki, sometimes depending on their position. For example, to format a word in italic, you include it in two pairs of apostrophes like ''this''.


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

italic

Bold Text '''Bold'''

bold

Bold and italic

''' ''bold & italic'' '''

bold & italic

Strike text

<strike>strike text</strike>

strike text
Escape wiki markup <nowiki>no markup</nowiki>

no ''markup''

Section Formatting

Headings of different levels == Test 2 ==
=== Test 3 ===
==== Test 4 ====
===== Test 5 =====
====== Test 6 ======


Note: Any article with 4 or more headings will automatically create a Table of Contents

Test 2

Test 3

Test 4

Test 5
Test 6
Horizontal Line Text before ---- Text after

Text before


Text after

Bullet list

* Start each line
* with an asterisk (*).
** More asterisks give deeper
*** and deeper levels.
* Line breaks <br/>don't break levels.
*** But jumping levels creates empty space.
Any other start ends the list.

  • Start each line
  • with an asterisk (*).
    • More asterisks give deeper
      • and deeper levels.
  • Line breaks
    don't break levels.
      • But jumping levels creates empty space.

Any other start ends the list.

Numbered list # Start each line
# with a Numbersign/Hashtag (#).
## More number signs give deeper
### and deeper
### levels.
# Line breaks <br />don't break levels.
### But jumping levels creates empty space.
# Blank lines

# end the list and start another.
Any other start also
ends the list.
  1. Start each line
  2. with a number sign (#).
    1. More number signs give deeper
      1. and deeper
      2. levels.
  3. Line breaks
    don't break levels.
      1. But jumping levels creates empty space.
  4. Blank lines
  1. end the list and start another.

Any other start also ends the list. </translate>

Indent text

: Single indent
:: Double indent
::::: Multiple indent

 : Single indent
Double indent
Multiple indent

Categories

To add a category, you can insert the following tag at the very end of the article:

           [[category:**********]]
                         Where ****** is your desired category.

In order to make nested categories, you simply need to replicate the tag. Say I want to categorize Countries with a subcategory England with a subcategory London:

[[category:Countries]] [[category:England]] [[category:London]]

Tabs

Tabs is an extension that provides a handy way to create multiple tabs and tables. This is very useful for containing nested information, and can be manipulated depending on your understanding of the mechanism. To learn more about Tabs, click here.

What you enter What you Get
<tabs>
<tab name="Tab#1">This is a test</tab>
<tab name="Tab#2", index="2">This is also a test</tab>
</tabs>
This is a test
This is also a test

Nested Tabs

Nested Tabs are useful for having large amounts of information without overburdening the layout or flow of your article.
The syntax is essentially the same as above <tab name="Open me!"> Contents </tob>

Attributes