Difference between revisions of "Help:Contents"

From ComplianceWiki
Jump to navigation Jump to search
Line 1: Line 1:
 
== Basic Editing ==
 
== Basic Editing ==
  
The webpage [http://meta.wikimedia.org/wiki/Help:Editing | http://meta.wikimedia.org/wiki/Help:Editing] has much more information if needed.  
+
==Most frequent Wiki markup explained==
 +
<!--It is intended to be brief, or as an overview. Otherwise why we would separate the materials into different pages? Thus it's best NOT to add new materials or expand here. Add more examples or expand in other areas like Wikitext examples. Thanks!-->
 +
Here are the most frequently used types of wiki markup. If you need more help see [[Help:Wikitext examples|Wikitext examples]].
 +
 
 +
<br clear="right" />
 +
{| class="wikitable"
 +
! style="width: 50%" | What it looks like
 +
! style="width: 50%" | What you type
 +
|-
 +
|
 +
You can ''italicize text'' by putting 2
 +
apostrophes on each side.
 +
 
 +
3 apostrophes will embolden '''the text'''.
 +
 
 +
5 apostrophes will embolden and italicize
 +
'''''the text'''''.
 +
 
 +
(4 apostrophes don't do anything special -- there's just ''''one left over''''.)
 +
|<pre>
 +
You can ''italicize text'' by putting 2
 +
apostrophes on each side.
 +
 
 +
3 apostrophes will embolden '''the text'''.
 +
 
 +
5 apostrophes will embolden and italicize
 +
'''''the text'''''.
 +
 
 +
(4 apostrophes don't do anything
 +
special -- there's just ''''one left
 +
over''''.)
 +
</pre>
 +
 
 +
|-
 +
| colspan=2 |
 +
===Section headings===
 +
|-
 +
! style="width: 50%" | What it looks like
 +
! style="width: 50%" | What you type
 +
|-
 +
|
 +
<div style="font-size:150%;border-bottom:1px solid rgb(170,170,170);">Section headings</div>
 +
 
 +
''Headings'' organize your writing into sections.
 +
The Wiki software can automatically generate
 +
a [[Help:Section|table of contents]] from them.
 +
 
 +
<div style="font-size:132%;font-weight:bold;">Subsection</div>
 +
Using more equals signs creates a subsection.
 +
 
 +
<div style="font-size:116%;font-weight:bold;">A smaller subsection</div>
 +
 
 +
Don't skip levels, like from two to four equals signs.
 +
 
 +
Start with 2 equals signs not 1 because 1 creates H1 tags which should be reserved for page title.
 +
|<pre>
 +
== Section headings ==
 +
 
 +
''Headings'' organize your writing into sections.
 +
The Wiki software can automatically generate
 +
a table of contents from them.
 +
 
 +
=== Subsection ===
 +
 
 +
Using more equals signs creates a subsection.
 +
 
 +
==== A smaller subsection ====
 +
Don't skip levels,
 +
like from two to four equals signs.
 +
 
 +
Start with 2 equals signs not 1
 +
because 1 creates H1 tags
 +
which should be reserved for page title.
 +
</pre>
 +
|-
 +
| colspan=2 |
 +
 
 +
===Lists and indents===
 +
|-
 +
! style="width: 50%" | What it looks like
 +
! style="width: 50%" | What you type
 +
|-
 +
|
 +
* ''Unordered [[Help:List|list]]s'' are easy to do:
 +
** Start every line with a star.
 +
*** More stars indicate a deeper level.
 +
* Previous item continues.
 +
** A new line
 +
* in a list 
 +
marks the end of the list.
 +
*Of course you can start again.
 +
|<pre>
 +
* ''Unordered lists'' are easy to do:
 +
** Start every line with a star.
 +
*** More stars indicate a deeper level.
 +
* Previous item continues.
 +
** A new line
 +
* in a list 
 +
marks the end of the list.
 +
* Of course you can start again.
 +
</pre>
 +
|-
 +
|
 +
# ''Numbered lists'' are:
 +
## Very organized
 +
## Easy to follow
 +
# Previous item continues
 +
A new line marks the end of the list.
 +
# New numbering starts with 1.
 +
 
 +
|<pre>
 +
# ''Numbered lists'' are:
 +
## Very organized
 +
## Easy to follow
 +
# Previous item continues
 +
A new line marks the end of the list.
 +
# New numbering starts with 1.
 +
</pre>
 +
|-
 +
|
 +
: A colon (:) indents a line or paragraph.
 +
A newline starts a new paragraph. <br>
 +
Often used for discussion on [[help:Talk page|talk pages]].
 +
: We use 1 colon to indent once.
 +
:: We use 2 colons to indent twice.
 +
::: 3 colons to indent 3 times, and so on.
 +
|<pre>
 +
: A colon (:) indents a line or paragraph.
 +
A newline starts a new paragraph. <br>
 +
Often used for discussion on talk pages.
 +
: We use 1 colon to indent once.
 +
:: We use 2 colons to indent twice.
 +
::: 3 colons to indent 3 times, and so on.
 +
</pre>
 +
|-
 +
| colspan=2 |
 +
 
 +
===Links===
 +
|-
 +
! style="width: 50%" | What it looks like
 +
! style="width: 50%" | What you type
 +
|-
 +
|
 +
Here's a link to the [[Main Page|Main page]].
 +
 
 +
But be careful - capitalization counts! 
 +
|<pre>
 +
Here's a link to the [[Main Page|Main page]].
 +
</pre>
 +
|-
 +
|
 +
[[Intentionally permanent red link]] is a page that doesn't exist
 +
yet. You could create it by clicking on the link.
 +
|<pre>
 +
[[Intentionally permanent red link]] is
 +
a page that doesn't exist
 +
yet. You could create it by
 +
clicking on the link.
 +
</pre>
 +
|}
 +
 
 +
 
 +
The webpage [http://meta.wikimedia.org/wiki/Help:Editing http://meta.wikimedia.org/wiki/Help:Editing] has much more information if needed.  
  
  

Revision as of 15:24, 31 January 2013

Basic Editing

Most frequent Wiki markup explained

Here are the most frequently used types of wiki markup. If you need more help see Wikitext examples.


What it looks like What you type

You can italicize text by putting 2 apostrophes on each side.

3 apostrophes will embolden the text.

5 apostrophes will embolden and italicize the text.

(4 apostrophes don't do anything special -- there's just 'one left over'.)

You can ''italicize text'' by putting 2 
apostrophes on each side. 

3 apostrophes will embolden '''the text'''. 

5 apostrophes will embolden and italicize 
'''''the text'''''.

(4 apostrophes don't do anything
special -- there's just ''''one left
over''''.)

Section headings

What it looks like What you type
Section headings

Headings organize your writing into sections. The Wiki software can automatically generate a table of contents from them.

Subsection

Using more equals signs creates a subsection.

A smaller subsection

Don't skip levels, like from two to four equals signs.

Start with 2 equals signs not 1 because 1 creates H1 tags which should be reserved for page title.

== Section headings ==

''Headings'' organize your writing into sections.
The Wiki software can automatically generate
a table of contents from them.

=== Subsection ===

Using more equals signs creates a subsection.

==== A smaller subsection ====
Don't skip levels, 
like from two to four equals signs.

Start with 2 equals signs not 1 
because 1 creates H1 tags
which should be reserved for page title.

Lists and indents

What it looks like What you type
  • Unordered lists are easy to do:
    • Start every line with a star.
      • More stars indicate a deeper level.
  • Previous item continues.
    • A new line
  • in a list

marks the end of the list.

  • Of course you can start again.
* ''Unordered lists'' are easy to do:
** Start every line with a star.
*** More stars indicate a deeper level.
* Previous item continues.
** A new line
* in a list  
marks the end of the list.
* Of course you can start again.
  1. Numbered lists are:
    1. Very organized
    2. Easy to follow
  2. Previous item continues

A new line marks the end of the list.

  1. New numbering starts with 1.
# ''Numbered lists'' are:
## Very organized
## Easy to follow
# Previous item continues
A new line marks the end of the list.
# New numbering starts with 1.
A colon (:) indents a line or paragraph.

A newline starts a new paragraph.
Often used for discussion on talk pages.

We use 1 colon to indent once.
We use 2 colons to indent twice.
3 colons to indent 3 times, and so on.
: A colon (:) indents a line or paragraph.
A newline starts a new paragraph. <br>
Often used for discussion on talk pages.
: We use 1 colon to indent once.
:: We use 2 colons to indent twice.
::: 3 colons to indent 3 times, and so on.

Links

What it looks like What you type

Here's a link to the Main page.

But be careful - capitalization counts!

Here's a link to the [[Main Page|Main page]].

Intentionally permanent red link is a page that doesn't exist yet. You could create it by clicking on the link.

[[Intentionally permanent red link]] is 
a page that doesn't exist
yet. You could create it by 
clicking on the link.


The webpage http://meta.wikimedia.org/wiki/Help:Editing has much more information if needed.


uploading images

linking to images


categories