Formatting Articles: Difference between revisions
Dgreenwood (talk | contribs) No edit summary |
Dgreenwood (talk | contribs) No edit summary |
||
| Line 41: | Line 41: | ||
Your article's text can be formatting using Mediawiki's markup. This is a syntax consisting of special characters, like asterisks, apostrophes and equals signs to do special things. For example, you can place a word in ''italics'' by placing a pair of apostrophies on both sides of the word, like <code><nowiki>''this''</nowiki></code>. | Your article's text can be formatting using Mediawiki's markup. This is a syntax consisting of special characters, like asterisks, apostrophes and equals signs to do special things. For example, you can place a word in ''italics'' by placing a pair of apostrophies on both sides of the word, like <code><nowiki>''this''</nowiki></code>. | ||
=== Character Formatting === | |||
This is also referred to as "inline" formatting. | |||
{|cellpadding="10" cellspacing="5" | |||
|-style="background-color:#36b0a7; color:white" | |||
|'''Format'''||'''You Type'''||'''You Get''' | |||
|- | |||
|Italics||<pre>''This is italic text''</pre>||''This is italic text'' | |||
|- | |||
|Bold Text||<pre>'''This is bold text'''</pre>||'''This is bold text''' | |||
|- | |||
|Bold and Italics||<pre>'''''This is bold and italic text'''''</pre>||'''''This is bold and italic text''''' | |||
|- | |||
|Escape wiki markup||<pre><nowiki><nowiki>Don't use '''markup''' syntax</nowiki></nowiki></pre>||<nowiki>Don't use '''markup''' syntax</nowiki> | |||
|} | |||
=== Sections === | === Sections === | ||
| Line 63: | Line 80: | ||
</pre> | </pre> | ||
| | | | ||
[[File:Section 1.png]] | |||
== Section | |} | ||
==== Further Guidance ==== | |||
DO NOT use the "Level 1" section by typing a single equals sign on either side of the section name. | |||
* For example: <code><nowiki>= Level 1 =</nowiki></code> | |||
** Don't do this! This is bad. | |||
Level 1 is reserved for the page level for the article you are editing. Begin all subsections at Level 2 | |||
* For example: <code><nowiki>== Level 2 ==</nowiki></code> | |||
** Do this. This is good. | |||
Do not type text on the same line of the section name. It will break the section. | |||
{|cellpadding="10" cellspacing="5" | |||
|-style="background-color:#36b0a7; color:white" | |||
|'''You Type'''||'''You Get''' | |||
|- | |||
|<pre>== Section Name == Section info</pre>||== Section Name == Section info | |||
|- | |||
| | |||
<pre>== Section Name == | |||
Section info</pre> | |||
| | |||
[[File:Section 2.png]] | |||
|} | |||
=== Bullets and Indents === | |||
Bulleted lists can be created using the asterisk <code>*</code>. | |||
{|cellpadding="10" cellspacing="5" | |||
|-style="background-color:#36b0a7; color:white" | |||
|'''You Type'''||'''You Get''' | |||
|- | |||
| | |||
<pre> | |||
Normal line of text. | |||
* First bullet | |||
* Second bullet | |||
* Third bullet | |||
** First sub-bullet | |||
** Second sub-bullet | |||
* Fourth bullet | |||
** First sub-bullet | |||
*** First sub-sub bullet | |||
</pre> | |||
| | |||
Normal line of text. | |||
* First bullet | |||
* Second bullet | |||
* Third bullet | |||
** First sub-bullet | |||
** Second sub-bullet | |||
* Fourth bullet | |||
** First sub-bullet | |||
*** First sub-sub bullet | |||
|} | |||
Numbered bulleted lists can be created using the pound sign <code>#</code>. | |||
{|cellpadding="10" cellspacing="5" | |||
|-style="background-color:#36b0a7; color:white" | |||
|'''You Type'''||'''You Get''' | |||
|- | |||
| | |||
<pre> | |||
Normal line of text. | |||
# First bullet | |||
# Second bullet | |||
# Third bullet | |||
## First sub-bullet | |||
## Second sub-bullet | |||
# Fourth bullet | |||
## First sub-bullet | |||
### First sub-sub bullet | |||
</pre> | |||
| | |||
Normal line of text. | |||
# First bullet | |||
# Second bullet | |||
# Third bullet | |||
## First sub-bullet | |||
## Second sub-bullet | |||
# Fourth bullet | |||
## First sub-bullet | |||
### First sub-sub bullet | |||
|} | |||
Lines can be indented using the colon character <code>:</code> | |||
{|cellpadding="10" cellspacing="5" | |||
|-style="background-color:#36b0a7; color:white" | |||
|'''You Type'''||'''You Get''' | |||
|- | |||
| | |||
<pre> | |||
Normal line of text. | |||
: First indented line | |||
: Second indented line | |||
: Third indented line | |||
:: First twice indented line | |||
:: Second twice indented line | |||
: Fourth indented line | |||
:: First twice indented line | |||
::: First thrice indented line | |||
</pre> | |||
| | |||
Normal line of text. | |||
: First indented line | |||
: Second indented line | |||
: Third indented line | |||
:: First twice indented line | |||
:: Second twice indented line | |||
: Fourth indented line | |||
:: First twice indented line | |||
::: First thrice indented line | |||
|} | |||
Bullets and indents can be mixed as well. | |||
=== | {|cellpadding="10" cellspacing="5" | ||
|-style="background-color:#36b0a7; color:white" | |||
|'''You Type'''||'''You Get''' | |||
|- | |||
| | |||
<pre> | |||
Normal line of text. | |||
# First numbered line | |||
# Second numbered line | |||
# Third numbered line | |||
#* Bullet under third numbered line | |||
#: Indent under third numbered line | |||
# Fourth numbered line | |||
## Numbered bullet under fourth numbered line | |||
##* First bullet under numbered bullet under the fourth numbered line | |||
</pre> | |||
| | |||
Normal line of text. | |||
# First numbered line | |||
# Second numbered line | |||
# Third numbered line | |||
#* Bullet under third numbered line | |||
#: Indent under third numbered line | |||
# Fourth numbered line | |||
## Numbered bullet under fourth numbered line | |||
##* First bullet under numbered bullet under the fourth numbered line | |||
|} | |||
Notice the leftmost character of each line is always a pound sign <code>#</code>. If you break this pattern, you will start a new sequence of numbers. | |||
=== | {|cellpadding="10" cellspacing="5" | ||
|-style="background-color:#36b0a7; color:white" | |||
|'''You Type'''||'''You Get''' | |||
|- | |||
| | |||
<pre> | |||
Normal line of text. | |||
# First numbered line | |||
# Second numbered line | |||
# Third numbered line | |||
#* Bullet under third numbered line | |||
* NEW SINGLE BULLET | |||
# New numbered sequence line. | |||
## Numbered bullet under new numbered line | |||
##* First bullet under numbered bullet under the new numbered line | |||
</pre> | |||
| | |||
Normal line of text. | |||
# First numbered line | |||
# Second numbered line | |||
# Third numbered line | |||
#* Bullet under third numbered line | |||
* NEW SINGLE BULLET | |||
# New numbered sequence line. | |||
## Numbered bullet under new numbered line | |||
##* First bullet under numbered bullet under the new numbered line | |||
|} | |} | ||
Revision as of 16:07, 27 March 2020
The following article will give you guidance on writing articles in the Grooper Wiki.
Creating a New Article
2) If the article does not exist, you will see a message reading "Create the page "Article Name" on this wiki!" above the search results. Click the searched article's name in quotes to create it.
3) Use the text editor box to write your article. For more information on Mediawiki's markup formatting refer to the Writing Articles#Text Formatting - Markup Syntax section of this article.
4) Press the "Save Page" button at the bottom of the text editor to save the page.
Text Formatting - Markup Syntax
Your article's text can be formatting using Mediawiki's markup. This is a syntax consisting of special characters, like asterisks, apostrophes and equals signs to do special things. For example, you can place a word in italics by placing a pair of apostrophies on both sides of the word, like ''this''.
Character Formatting
This is also referred to as "inline" formatting.
| Format | You Type | You Get |
| Italics | ''This is italic text'' |
This is italic text |
| Bold Text | '''This is bold text''' |
This is bold text |
| Bold and Italics | '''''This is bold and italic text''''' |
This is bold and italic text |
| Escape wiki markup | <nowiki>Don't use '''markup''' syntax</nowiki> |
Don't use '''markup''' syntax |
Sections
Section headers are useful to break up sections of information in your article. Sections and subsections are called out by pairs of equals signs on both sides of the sections name.
| You Type | You Get |
== Section Level 2 == === Section Level 3 === ==== Section Level 4 ==== ===== Section Level 5 ===== ====== Section Level 6 ====== |
Further Guidance
DO NOT use the "Level 1" section by typing a single equals sign on either side of the section name.
- For example:
= Level 1 =- Don't do this! This is bad.
Level 1 is reserved for the page level for the article you are editing. Begin all subsections at Level 2
- For example:
== Level 2 ==- Do this. This is good.
Do not type text on the same line of the section name. It will break the section.
| You Type | You Get |
== Section Name == Section info |
== Section Name == Section info |
== Section Name == Section info |
Bullets and Indents
Bulleted lists can be created using the asterisk *.
| You Type | You Get |
Normal line of text. * First bullet * Second bullet * Third bullet ** First sub-bullet ** Second sub-bullet * Fourth bullet ** First sub-bullet *** First sub-sub bullet |
Normal line of text.
|
Numbered bulleted lists can be created using the pound sign #.
| You Type | You Get |
Normal line of text. # First bullet # Second bullet # Third bullet ## First sub-bullet ## Second sub-bullet # Fourth bullet ## First sub-bullet ### First sub-sub bullet |
Normal line of text.
|
Lines can be indented using the colon character :
| You Type | You Get |
Normal line of text. : First indented line : Second indented line : Third indented line :: First twice indented line :: Second twice indented line : Fourth indented line :: First twice indented line ::: First thrice indented line |
Normal line of text.
|
Bullets and indents can be mixed as well.
| You Type | You Get |
Normal line of text. # First numbered line # Second numbered line # Third numbered line #* Bullet under third numbered line #: Indent under third numbered line # Fourth numbered line ## Numbered bullet under fourth numbered line ##* First bullet under numbered bullet under the fourth numbered line |
Normal line of text.
|
Notice the leftmost character of each line is always a pound sign #. If you break this pattern, you will start a new sequence of numbers.
| You Type | You Get |
Normal line of text. # First numbered line # Second numbered line # Third numbered line #* Bullet under third numbered line * NEW SINGLE BULLET # New numbered sequence line. ## Numbered bullet under new numbered line ##* First bullet under numbered bullet under the new numbered line |
Normal line of text.
|





