Difference between revisions of "How to Wiki"
Malcolmmcc (talk | contribs) |
Malcolmmcc (talk | contribs) (→Tabs) |
||
Line 155: | Line 155: | ||
== 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 tables and nested tabs. | ||
+ | {|style="width:60%" | | ||
+ | | '''What you enter''' | ||
+ | | '''What you Get''' | ||
+ | |- | ||
+ | | | ||
+ | : <nowiki><tabs></nowiki><br> | ||
+ | :: <nowiki><tab name="Tab#1">This is a test</tab></nowiki><br> | ||
+ | :: <nowiki><tab name="Tab#2", index="2">This is also a test</tab></nowiki><br> | ||
+ | : </tabs> | ||
+ | | <tabs><tab name="Tab#1">This is a test</tab><tab name="Tab#2", index="2">This is also a test</tab></tabs> } |
Revision as of 11:05, 17 November 2015
Contents
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>strike text</strike> |
|
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 2Test 3Test 4Test 5Test 6 |
Horizontal Line | Text before ---- Text after |
Text before Text after |
Bullet list |
* Start each line |
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. |
Any other start also ends the list. </translate> |
Indent text |
: Single indent |
: Single 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 tables and nested tabs.
What you enter | What you Get |
|
This is a test This is also a test |