Wiki cheat sheet: Difference between revisions

From Usenet Big-8 Management Board
(Created page with '[http://www.mediawiki.org/wiki/Help:Formatting WikiMedia cheatsheet] This page gives some examples of how to mark up wiki pages. To see the markup, edit the page. '''bold''' …')
 
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
[http://www.mediawiki.org/wiki/Help:Formatting WikiMedia cheatsheet]
[http://www.mediawiki.org/wiki/Help:Formatting WikiMedia cheatsheet]
[[Dokuwiki vs. MediaWiki syntax]]


This page gives some examples of how to mark up wiki pages.  To see the markup, edit the page.
This page gives some examples of how to mark up wiki pages.  To see the markup, edit the page.
Line 33: Line 35:
[http://www.google.com This Link points to google]
[http://www.google.com This Link points to google]


<andi@splitbrain.org>
[mailto:someone@somedomain.invalid someone@somedomain.invalid]


;Internal links  
;Internal links  
Line 61: Line 63:
----
----


Lists
;Lists


* This is a list
* This is a list
Line 85: Line 87:
##* Sub-subpoint
##* Sub-subpoint
##* Sub-subpoint
##* Sub-subpoint


<pre>
<pre>
Line 96: Line 97:
# Another item
# Another item
## Just use indention for deeper levels
## Just use indention for deeper levels
# That's it
# And unindent.
 
# Mixed-up list
#* Subpoint
#* Subpoint
# Second number
#* Subpoint
#* Subpoint
# Third number
##
##
##* Sub-subpoint
##* Sub-subpoint
##* Sub-subpoint
</pre>
</pre>


Quoting
;Indenting
:I think we should do it
::No we shouldn't
:Well, I say we should
::Really?
:Yes!
:::Then let's do it!


  I think we should do it
<pre>
 
;Indenting
  > No we shouldn't
:I think we should do it
 
::No we shouldn't
  >> Well, I say we should
:Well, I say we should
 
::Really?
  > Really?
:Yes!
 
:::Then let's do it!
  >> Yes!
</pre>
 
  >>> Then let's do it!


<pre>
<pre>
This is preformatted code. All spaces are preserved: like              <-this
This is preformatted code. All spaces are preserved: like              <-this
</code>
</pre>
 
<file>
This is pretty much the same, but you could use it to show that you quoted a file. 
</file>
 
To let the parser ignore an area completely (ie. do no formatting on it),
enclose the area either with <pre>nowiki</pre> tags or even simpler, with double
percent signs <pre><nowiki>%%</nowiki></pre>.

Latest revision as of 02:22, 11 July 2010

WikiMedia cheatsheet

Dokuwiki vs. MediaWiki syntax

This page gives some examples of how to mark up wiki pages. To see the markup, edit the page.

bold

italic

underlined

preformatted

subscript

superscript

deleted

Force a newline: <br>

No markup: use "nowiki" tags:

Insert non-formatted text here
External links

http://www.google.com

www.google.com

This Link points to google

someone@somedomain.invalid

Internal links
[[pagename]] 

[[pagename|Title Text]]

The first character of all titles is forced to be capitalized.

Images

Lots of hints.

[[File:image.png|option|option|...]]

2: H1

3: H2

4: H3

5: H4
6: H5

Horizontal Line


Lists
  • This is a list
  • The second item
    • You may have different levels
  • Another item
  1. The same list but ordered
  2. Another item
    1. Just use indention for deeper levels
  3. And unindent.
  1. Mixed-up list
    • Subpoint
    • Subpoint
  2. Second number
    • Subpoint
    • Subpoint
  3. Third number
      • Sub-subpoint
      • Sub-subpoint
      • Sub-subpoint
* This is a list
* The second item
** You may have different levels
* Another item

# The same list but ordered
# Another item
## Just use indention for deeper levels
# And unindent.

# Mixed-up list
#* Subpoint
#* Subpoint
# Second number
#* Subpoint
#* Subpoint
# Third number
##
##
##* Sub-subpoint
##* Sub-subpoint
##* Sub-subpoint
Indenting
I think we should do it
No we shouldn't
Well, I say we should
Really?
Yes!
Then let's do it!
;Indenting
:I think we should do it
::No we shouldn't
:Well, I say we should
::Really?
:Yes!
:::Then let's do it!
This is preformatted code. All spaces are preserved: like              <-this