Help:Quick Reference: Difference between revisions
Jump to navigation
Jump to search
m (Admin moved page Help:Editing Quick Reference to Help:Quick Reference without leaving a redirect) |
mNo edit summary |
||
Line 1: | Line 1: | ||
= How to Create a New Page = | |||
There are several ways to start a new page. | |||
# Wikilinks: If you (or anyone else) create a link to an article that doesn't exist yet, the link will be colored red, <span style="color: #ba0000">like this</span>. Clicking a red link will take you to the edit page for the new article. Simply type your text, click save and the new page will be created. Once the page has been created, the link will change from <span style="color: #ba0000">red</span> to <span style="color: #002bb8;">blue</span> (<span style="color: #5a3696;">purple</span> for pages you've visited) indicating that the article now exists. Usually this is the best way to create a new page, because it means that right from the start, the page will be linked from at least one other place on the wiki (and typically you will want to mesh it into other related pages later). | |||
# From the search box: If you search for a page that doesn't exist (using the search box and "Go" button on the left of the page) then you will be provided with a link to create the new page. | |||
= Links = | |||
== Internal Links == | |||
[[Main Page]] | |||
Code: | |||
<nowiki>[[Main Page]]</nowiki> | |||
== External Links == | |||
[https://freestylekb.com The Freestyle Knowledge Base] | |||
Code: | |||
<nowiki>[https://freestylekb.com The Freestyle Knowledge Base]</nowiki> | |||
= Section Formatting = | = Section Formatting = | ||
Code: | Code: | ||
Line 88: | Line 102: | ||
---- | ---- | ||
Text After | Text After | ||
= MediaWiki Help = | |||
For more detailed information see the [https://www.mediawiki.org/wiki/Help:Contents Help Contents] at mediawiki.com. |
Revision as of 02:15, 2 February 2018
How to Create a New Page
There are several ways to start a new page.
- Wikilinks: If you (or anyone else) create a link to an article that doesn't exist yet, the link will be colored red, like this. Clicking a red link will take you to the edit page for the new article. Simply type your text, click save and the new page will be created. Once the page has been created, the link will change from red to blue (purple for pages you've visited) indicating that the article now exists. Usually this is the best way to create a new page, because it means that right from the start, the page will be linked from at least one other place on the wiki (and typically you will want to mesh it into other related pages later).
- From the search box: If you search for a page that doesn't exist (using the search box and "Go" button on the left of the page) then you will be provided with a link to create the new page.
Links
Internal Links
Code: [[Main Page]]
External Links
Code: [https://freestylekb.com The Freestyle Knowledge Base]
Section Formatting
Code: = Section Formatting =
Section Heading - Level 2
Code: == Section Heading - Level 2 ==
Section Heading - Level 3
Code: === Section Heading - Level 2 ===
Section Heading - Level 4
Code: ==== Section Heading - Level 4 ====
Text Formatting
Italic text
Code: ''Italic text''
Bold text
Code: '''Bold text'''
Bold and italic
Code: '''''Bold and italic'''''
Escape ''wiki'' markup (This will display the text as seen, so it doesn't try to italicize the word in this example)
Code: <nowiki>Escape ''wiki'' markup</nowiki>
Bullet List
- Start each line
- with an asterisk (*).
- More asterisks give deeper
- and deeper levels.
- More asterisks give deeper
- Line breaks
don't break levels.- But jumping levels creates empty space.
Any other start ends the list.
- bullet list
- - definition
- sublist that doesn't create empty
- spaces after definition
Code: * Start each line * with an asterisk (*). ** More asterisks give deeper *** and deeper levels. * Line breaks
don't break levels. *** But jumping levels creates empty space. Any other start ends the list.
Numbered List
- Start each line
- with a number sign (#).
- More number signs give deeper
- and deeper
- levels.
- More number signs give deeper
- Line breaks
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.
Code: # Start each line # with a number sign (#). ## More number signs give deeper ### and deeper ### levels. # Line breaks
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.
Horizontal Rule
Text Before
Text After
Code: Text Before ---- Text After
MediaWiki Help
For more detailed information see the Help Contents at mediawiki.com.