Help:Contents
From FIS Freestyle wiki
Revision as of 11:12, 20 April 2009 (edit) Joe (Talk | contribs) ← Previous diff |
Revision as of 11:19, 21 April 2009 (edit) (undo) Joe (Talk | contribs) Next diff → |
||
Line 1: | Line 1: | ||
- | |||
== WikiMedia Reference Card == | == WikiMedia Reference Card == | ||
Line 182: | Line 181: | ||
<!-- Note to editors: blah blah blah. --> | <!-- Note to editors: blah blah blah. --> | ||
</pre> | </pre> | ||
+ | |} | ||
+ | |||
+ | == Wiki table markup summary == | ||
+ | {|cellpadding="5" cellspacing="0" border="1" width="60%" | ||
+ | | | ||
+ | <nowiki>{|</nowiki> | ||
+ | | '''table start''' | ||
+ | |- | ||
+ | | | ||
+ | <nowiki>|+</nowiki> | ||
+ | | table '''caption,''' ''optional;'' only between '''table start''' and first '''table row''' | ||
+ | |- | ||
+ | | | ||
+ | <nowiki>|-</nowiki> | ||
+ | | '''table row,''' ''optional on first row'' -- wiki engine assumes the first row | ||
+ | |- | ||
+ | | | ||
+ | <nowiki>!</nowiki> | ||
+ | | '''table header''' cell, ''optional.'' Consecutive '''table header''' cells may be added on same line separated by double marks (<code>!!</code>) or start on new lines, each with its own single mark (<code>!</code>). | ||
+ | |- | ||
+ | | | ||
+ | <nowiki>|</nowiki> | ||
+ | | '''table data''' cell, ''required!'' Consecutive '''table data''' cells may be added on same line separated by double marks (<code><nowiki>||</nowiki></code>) or start on new lines, each with its own single mark (<code><nowiki>|</nowiki></code>). | ||
+ | |- | ||
+ | | | ||
+ | <nowiki>|}</nowiki> | ||
+ | | '''table end''' | ||
|} | |} |
Revision as of 11:19, 21 April 2009
Contents |
WikiMedia Reference Card
Link To WikiMedia Reference Card;[[1]]
Download WikiMedia Reference Card (PDF) [[2]]
Basic text formatting
You can format the page using Wikitext special characters.
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. (Using 4 apostrophes doesn't do anything special -- | 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'''''. (Using 4 apostrophes doesn't do anything special -- <br /> the last pair are just ''''left over ones'''' that are included as part of the text.) |
A single newline generally has no effect on the layout. These can be used to separate sentences within a paragraph. Some editors find that this aids editing and improves the diff function (used internally to compare different versions of a page). But an empty line starts a new paragraph. When used in a list, a newline does affect the layout (see below). | A single newline generally has no effect on the layout. These can be used to separate sentences within a paragraph. Some editors find that this aids editing and improves the ''diff'' function (used internally to compare different versions of a page). But an empty line starts a new paragraph. When used in a list, a newline ''does'' affect the layout ([[#lists|see below]]). |
You can break lines Please do not start a link or italics or bold text on one line and end on the next. | You can break lines<br/> without a new paragraph.<br/> Please use this sparingly. Please do not start a link or ''italics'' or '''bold''' text on one line and end on the next. |
You should "sign" your comments on talk pages: - Three tildes gives your signature: Example | You should "sign" your comments on talk pages: - Three tildes gives your signature: ~~~ - Four tildes give your signature plus date/time: ~~~~ - Five tildes gives the date/time alone: ~~~~~ |
HTML tags
Template:Main You can use some HTML tags, too. However, you should avoid HTML in favor of Wiki markup whenever possible.
What it looks like | What you type |
---|---|
Put text in a typewriter
font. The same font is
generally used for | Put text in a <tt>typewriter font</tt>. The same font is generally used for <code> computer code</code>. |
| <strike>Strike out</strike> or <u>underline</u> text, or write it <span style= "font-variant:small-caps"> in small caps</span>. |
Superscripts and subscripts: X2, H2O | Superscripts and subscripts: X<sup>2</sup>, H<sub>2</sub>O |
| <center>Centered text</center> * Please note the American spelling of "center". |
The blockquote command formats block quotations, typically by surrounding them with whitespace and a slightly different font. | <blockquote> The '''blockquote''' command ''formats'' block quotations, typically by surrounding them with whitespace and a slightly different font. </blockquote> |
Invisible comments to editors (<!-- -->) appear only while editing the page.
| Invisible comments to editors (<!-- -->) appear only while editing the page. <!-- Note to editors: blah blah blah. --> |
Wiki table markup summary
{| | table start |
|+ | table caption, optional; only between table start and first table row |
|- | table row, optional on first row -- wiki engine assumes the first row |
! | table header cell, optional. Consecutive table header cells may be added on same line separated by double marks (!! ) or start on new lines, each with its own single mark (! ).
|
| | table data cell, required! Consecutive table data cells may be added on same line separated by double marks (|| ) or start on new lines, each with its own single mark (| ).
|
|} | table end |