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

Help:Contents

From Eiyuden Chronicle Wiki
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!

The Basics

Editing Existing Pages

To edit an article, click the Edit button at the top, make changes in the text box, preview them using the Show preview button, then save by clicking Save page. It's important to provide a summary of changes before saving, and for minor edits like typo correction, tick the Minor Edit box.

Creating New Pages

Creating a new article is done by clicking an existing red link or typing the article name in the Search box. Follow the red link to create the page. Ensure the topic is relevant to the wiki to avoid deletion. Check for existing articles covering the same topic before creating. When using templates, you can copy and paste templates from similar pages, adjusting fields accordingly.

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>