|
Tags: New redirect visualeditor-switched |
| (51 intermediate revisions by 2 users not shown) |
| Line 1: |
Line 1: |
| The following article will give you guidance on writing articles in the Grooper Wiki.
| | #REDIRECT [[Article Formatting]] |
| | |
| == Creating a New Article ==
| |
| | |
| <tabs style = "margin:20px">
| |
| <tab name="Step 1" style="margin:20px">
| |
| 1) Using the search bar, type the name of the article you wish to create.
| |
| | |
| | |
| [[file:add article 1.png|border]] | |
| | |
| </tab>
| |
| <tab name="Step 2" style="margin:20px">
| |
| 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.
| |
| | |
| | |
| [[file:add article 2.png|border]]
| |
| | |
| </tab>
| |
| <tab name="Step 3 and 4" style="margin:20px">
| |
| | |
| 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.
| |
| | |
| | |
| [[file:add article 3.png|border]]
| |
| | |
| | |
| </tab>
| |
| <tab name="Step 5" style="margin:20px">
| |
| 5) If you need to edit your page further. Press the "Edit" button at the top of the article.
| |
| | |
| | |
| [[file:add article 4.png|border]]
| |
| | |
| </tab>
| |
| </tabs>
| |
| | |
| == 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 <code><nowiki>''this''</nowiki></code>.
| |
| | |
| === 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.
| |
| | |
| {|cellpadding="10" cellspacing="5"
| |
| |-style="background-color:#36b0a7; color:white"
| |
| |'''You Type'''||'''You Get'''
| |
| |-
| |
| |
| |
| <pre>
| |
| == Section Level 2 ==
| |
| | |
| === Section Level 3 ===
| |
| | |
| ==== Section Level 4 ====
| |
| | |
| ===== Section Level 5 =====
| |
| | |
| ====== Section Level 6 ======
| |
| </pre>
| |
| |
| |
| __NOTOC__
| |
| == Section Level 2 ==
| |
| | |
| === Section Level 3 ===
| |
| | |
| ==== Section Level 4 ====
| |
| | |
| ===== Section Level 5 =====
| |
| | |
| ====== Section Level 6 ======
| |
| |}
| |