This page has been protected so that only users with administrator privileges can edit it.

Help:Contents

From Eiyuden Chronicle Wiki
Revision as of 04:34, 7 May 2022 by TheirStar (talk | contribs)
Jump to navigation Jump to search

This page is for new users and those who need a refresher at helping and editing the Eiyuden Chronicle Wiki. Thank you for your help!

Isha Talk 1.png
Isha
Trust me, I know a lot about building and rebuilding. Just like New Nevaeh, the Eiyuden Chronicle Wiki is going to need your help to become the bustling, thriving community it has the potential to be!

The Basics

Editing Pages

Let's say you've found an article you want to edit, either to add information, remove or fix erroneous information or simply to clean up prose, grammar, typos and so on. To edit a page, all you have to do is click the Edit button at the top of the page. This will bring you to a text box where you can edit the article. Before saving your changes however, it's recommended that you click the Show preview button in order to ensure no glaring errors were made. When you are happy with your changes, click the Save page button and they will be submitted.

However, before you submit your changes, It is highly recommended that you type in a Summary of the changes you've made. Doing this will make it easier for other users to know what you did to the article. If it was only a small change like fixing a typo, then check the Minor Edit box, so users will know not to worry about it.

Creating Pages

Creating a new article is also simple to do. If there is need for a new article, you can either click on an existing (red) link or simply type the name of the article into the Search box at the top of the page. If you use the Search box then there will be a link that says "Create the page "(your text)" on this wiki!" Simply click on the red link and you will be taken to a page editor where you can proceed in making the article.

Be sure that the page you are creating is a relevant subject to the wiki, otherwise a member of the staff will delete the page. Also, try to make sure that the wiki doesn't already have an article with a different name that covers the same topic otherwise your hard work might be for nothing!

When creating pages that use templates, feel free to copy existing templates from other pages. For example, when creating a new character page, copy and paste the character box and edit the fields to reflect the character you are creating.

Isha Talk 1.png
Isha
After all, the great thing about us all coming together is that everyone's work helps everyone else. By sharing our tools we get more done, faster.

Wiki Code

Wiki Code, sometimes called Wiki Syntax, is the formatting language used for Wiki projects. Although Wiki projects can technically process HTML, Wiki Code is always preferred. When editing or creating a page, these will be some of the most common forms of Wiki Code you'll see.

Formatting Text

What you see What you type
Italic Text
''Italic Text''
Bold Text
'''Bold Text'''
Bold and Italic Text
'''''Bold and Italic Text'''''
Strike out
<s>Strike out</s>
Big text or small text
<big>Big text</big> or <small>small text</small>
Superscript or subscript
<sup>Superscript</sup> or <sub>subscript</sub>
Centered text
<center>Centered text</center>

A line break won't be registered with only one new line. This line appears to be in the same paragraph as the previous line.

Two new lines, however, begins a new paragraph.

A line break won't be registered with only one new line.
This line appears to be in the same paragraph as the previous line.

Two new lines, however, begins a new paragraph.
[[Wiki]] coding '''is not''' rendered.
<nowiki>[[Wiki]] coding '''is not''' rendered.</nowiki>

A typewriter font for monospace text
or for computer code: int main()

  • For aesthetic reasons, using <code> where applicable is preferable to using <tt>.
A typewriter font for <tt>monospace text</tt>
or for computer code: <code>int main()</code>

Links

What you see What you type
Eiyuden Chronicle: Hundred Heroes
[[Eiyuden Chronicle: Hundred Heroes]]
Eiyuden Chronicle
[[Eiyuden Chronicle: Hundred Heroes|Eiyuden Chronicle]]
Clicking on this link will allow you to create the page.
[[Non-existent page]]
Clicking on this link will allow you to create the page.
Linking to a different namespace that is not Category:
Linking to a different namespace that is not Category:
[[Talk:Main Page]]
Linking to a Category:
Linking to a Category:
[[:Category:Help]]
External Links
|External Links
*[http://eiyuden.wiki.gg] 
*http://eiyuden.wiki.gg
*[http://eiyuden.wiki.gg Eiyuden Chronicle Wiki]
Eiyuden Chronicle: Hundred Heroes#Development is a link to a section within another page.

#The Basics is a link to a section on the current page.

#example is a link to an anchor that was created using
an id attribute
[[Eiyuden Chronicle: Hundred Heroes#Development]] is a link
to a section within another page.

[[#The Basics]] is a link
to a section on the current page.

[[#example]] is a link to an
anchor that was created using
<div id="example">an id attribute</div>
Isha Talk 2.png
Isha
Getting the hang of it? You can always reference this page if you need a refresher!