MediaWiki

From rbachwiki
Revision as of 20:57, 5 August 2016 by Bacchas (talk | contribs) (Created page with "== Link to Another Page == <pre> BackWiki:CSS // use alternate text My CSS Page </pre> == Linking to Other Websites == <pre> http://google.com // u...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Link to Another Page

[[BackWiki:CSS]]

// use alternate text

[[BackWiki:Css|My CSS Page ]]

Linking to Other Websites

http://google.com

 // use alt text

[http://www.google.com Text To Display]

HTML TAGS

// html tags must be wrapped in html tag
<html> <a href="http://www.google.com"> Text</a></html>

Basic Text Formatting

// italic
''sorround text with 2 single quotes''
// bold
'''Surround with 3 single quotes'''
// bold and itallic
''''' 5 single quotes '''''
// horizontal rule
----
// <!-- Comment will not display -->

Creating Lists

// lists
* list one
*list item 2
** list item one second level
*** list item one third level

// numbered list
# one level
## 2nd level
### 3 level

// defination list
; list heading like dt
: list item like dd

// line break inside list
<br />

// indenting list items
this is non idnedted text
: indented one level
:: indented 2 level