Guides:Eviand's Wiki Guide Creation: Difference between revisions
From SpiritVale Wiki
More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<noinclude>[[Category:Guides]]</noinclude> | <noinclude>[[Category:Guides]]</noinclude> | ||
{{Template:PageHeader | |||
| PageImage = SpiritValeLogo.png | |||
| PageHeader = Eviand's Wiki Guide Creation | |||
}} | |||
== Using this Guide == | == Using this Guide == | ||
This guide's main purpose is to let anyone create a guide page, so that they can publish their build in a static environment. If you feel like you have a great build that isn't anywhere in Discord or the Wiki, or that you wish the Wiki had something better than what it currently has, this page will give you some helpful guidance on how to navigate through a wiki. | This guide's main purpose is to let anyone create a guide page, so that they can publish their build in a static environment. If you feel like you have a great build that isn't anywhere in Discord or the Wiki, or that you wish the Wiki had something better than what it currently has, this page will give you some helpful guidance on how to navigate through a wiki. | ||
Line 12: | Line 11: | ||
== Creating the Page == | == Creating the Page == | ||
The quickest way to create a guide is to add a link in an appropriate Guides page (e.g., [[Guides:Acolyte Builds]]): | |||
* Edit the page where your guide link should live. | |||
* Under any section, add a bullet using an asterisk (<nowiki>*</nowiki>). | |||
* Edit the page | * Name your guide in the Guides namespace (<nowiki>Guides:Your_Guide_Name</nowiki>). | ||
* Under any section, add a bullet | ** Example: <nowiki>Guides:Special_Setup_of_Gear</nowiki> | ||
* | * Wrap the name in double brackets: | ||
** Example: Guides: | ** Example: <nowiki>[[Guides:Special_Setup_of_Gear]]</nowiki> | ||
* Wrap the | * Save the page. | ||
** Example: <nowiki>[[Guides: | |||
* Save | |||
The new link will appear in red (a “redlink”): [[Guides:Special Setup of Gear]]. Click it to start editing the new page. | |||
=== Naming Conventions === | |||
It's important for Wiki management to align with standard naming conventions in order to organize and sort pages into their correct locations. | It's important for Wiki management to align with standard naming conventions in order to organize and sort pages into their correct locations. | ||
Line 34: | Line 29: | ||
== Understanding the Editor == | == Understanding the Editor == | ||
There are two edit modes: | |||
* '''Edit''' (visual): What-you-see-is-what-you-get editing. | |||
** Pros: Fast for typos, formatting, and template fields. | |||
** Cons: Some advanced features aren’t available. | |||
* '''Edit''' | * '''Edit source''' (wikitext): Directly edit the page’s source. | ||
** Pros | ** Pros: Precise control; faster for experienced editors. | ||
** Cons | ** Cons: Requires familiarity with wikitext; dense pages can be harder to read. | ||
Please use whatever version you are more comfortable with, and you can always ask for help in Discord if you need it, just @Eviand. | Please use whatever version you are more comfortable with, and you can always ask for help in Discord if you need it, just @Eviand. | ||
== Templates and What They Do == | == Templates and What They Do == | ||
Templates are reusable page components that you “transclude” (which is a fancy word for "insert directly into a page") into another page. This lets you reuse complex formatting with simple parameters. | |||
A | A basic insert looks like this: | ||
<nowiki>{{Example Insert | |||
| Example Parameter = Example Value | |||
}} </nowiki> | |||
{Example Insert | |||
This will check for a template page called "Example Insert", and then you | This will check for a template page called "Example Insert", and then you can fill in all the values. When you "Save changes" the insert transforms into the template, and automatically fills out all the empty fields. | ||
It allows the creation of fancy tables like this, without any programming skills. | It allows the creation of fancy tables like this, without any programming skills. | ||
Example: | |||
<nowiki>{{ClassInfoBox | |||
| Role = Melee <br> Poison | | Role = Melee <br> Poison | ||
| Weapons = Dagger | | Weapons = Dagger | ||
Line 73: | Line 64: | ||
| DEX = 9 | | DEX = 9 | ||
| LUK = 1 | | LUK = 1 | ||
}} | |||
</nowiki> | |||
→ | |||
{{ClassInfoBox | {{ClassInfoBox | ||
| Role = Melee <br> Poison | |||
| Weapons = Dagger | |||
| STR = 9 | |||
| AGI = 12 | |||
| VIT = 1 | |||
| INT = 1 | |||
| DEX = 9 | |||
| LUK = 1 | |||
}} | }} | ||
You can also use the normal edit function to directly edit a table. Simply doubleclick on any inserted template, and a popup box will show up that will let you enter in all the individual fields | You can also use the normal edit function to directly edit a table. Simply doubleclick on any inserted template, and a popup box will show up that will let you enter in all the individual fields: | ||
[[File:Edit Template Example.png|250px]] | [[File:Edit Template Example.png|250px]] | ||
== Wiki Headers (Sections) == | == Wiki Headers (Sections) == | ||
You can create headings with equal signs around the text: | |||
You can create | |||
* <nowiki>= Level 1 Header =</nowiki> | * <nowiki>= Level 1 Header =</nowiki> | ||
Line 110: | Line 95: | ||
Note that for consistency, try to only use Levels 2 and 3 for most things, as the rest are often overkill, and can make a wiki page a lot more difficult to read and edit. However, go crazy if you feel that it will work! | Note that for consistency, try to only use Levels 2 and 3 for most things, as the rest are often overkill, and can make a wiki page a lot more difficult to read and edit. However, go crazy if you feel that it will work! | ||
Example: | |||
<nowiki>== Example Two Level Section == | |||
Quick description | |||
=== Example Three Level Section === | |||
Another quick description | |||
</nowiki> | |||
== Adding Images and Links == | == Adding Images and Links == | ||
Link to other pages with double brackets: | |||
* <nowiki>[[Example]]</nowiki> | * <nowiki>[[Example]]</nowiki> | ||
* | * Renders as: [[Example]] | ||
Link to a section with a hash: | |||
* <nowiki>[[Example#Example Level 2 Section]]</nowiki> | |||
* Renders as: [[Example#Example Level 2 Section]] | |||
Change the displayed text with a pipe: | |||
* <nowiki>[[Example|My new name!]]</nowiki> | * <nowiki>[[Example|My new name!]]</nowiki> | ||
* [[Example|My new name!]] | * Renders as: [[Example|My new name!]] | ||
Combine section + custom text: | |||
* <nowiki>[[Example#Example Level 2 Section|My new name!]]</nowiki> | * <nowiki>[[Example#Example Level 2 Section|My new name!]]</nowiki> | ||
* [[Example#Example Level 2 Section|My new name!]] | * Renders as: [[Example#Example Level 2 Section|My new name!]] | ||
Add an image (with a 15px width): | |||
* <nowiki>[[File:FireIcon.png|15px]]</nowiki> | * <nowiki>[[File:FireIcon.png|15px]]</nowiki> | ||
* [[File:FireIcon.png|15px]] | * Renders as: [[File:FireIcon.png|15px]] | ||
==== List of | ==== List of Pre-made Image Icons ==== | ||
Here is a full list of all the icons you can use in your text, along side a link to each section. Just copy and paste any of these into your page to make your words and images stand out! | Here is a full list of all the icons you can use in your text, along side a link to each section. Just copy and paste any of these into your page to make your words and images stand out! | ||
'''Attributes''' | '''Attributes''' | ||
<nowiki> | <nowiki> | ||
[[File:Strength.png|15px]] [[Attributes#Strength_(STR)|STR]] | [[File:Strength.png|15px]] [[Attributes#Strength_(STR)|STR]] | ||
Line 162: | Line 138: | ||
</nowiki> | </nowiki> | ||
How it looks when on a page: | |||
* [[File:Strength.png|15px]] [[Attributes#Strength_(STR)|STR]] | * [[File:Strength.png|15px]] [[Attributes#Strength_(STR)|STR]] | ||
* [[File:Vitality.png|15px]] [[Attributes#Vitality_(VIT)|VIT]] | * [[File:Vitality.png|15px]] [[Attributes#Vitality_(VIT)|VIT]] | ||
Line 181: | Line 158: | ||
[[File:HolyIcon.png|15px]] [[Elements#Holy|Holy]] | [[File:HolyIcon.png|15px]] [[Elements#Holy|Holy]] | ||
[[File:NeutralIcon.png|15px]] [[Elements#Neutral|Neutral]] | [[File:NeutralIcon.png|15px]] [[Elements#Neutral|Neutral]] | ||
</nowiki> | </nowiki> | ||
How it looks when on a page: | |||
* [[File:FireIcon.png|15px]] [[Elements#Fire|Fire]] | * [[File:FireIcon.png|15px]] [[Elements#Fire|Fire]] | ||
* [[File:WaterIcon.png|15px]] [[Elements#Water|Water]] | * [[File:WaterIcon.png|15px]] [[Elements#Water|Water]] | ||
Line 194: | Line 171: | ||
* [[File:NeutralIcon.png|15px]] [[Elements#Neutral|Neutral]] | * [[File:NeutralIcon.png|15px]] [[Elements#Neutral|Neutral]] | ||
== Guide-Specific Section == | |||
This section explains how to approach different kinds of guides. | |||
== Guide Specific Section == | |||
This section | |||
=== Class Build Guides === | === Class Build Guides === | ||
Class build guides focus on a core mechanic or unique playstyle for a class. They offer alternative ways to play and add variety to the game. | |||
Create your build in the appropriate class page: | |||
* [[Guides:Warrior Builds]] | * [[Guides:Warrior Builds]] | ||
* [[Guides:Knight Builds]] | * [[Guides:Knight Builds]] | ||
Line 214: | Line 186: | ||
* [[Guides:Acolyte Builds]] | * [[Guides:Acolyte Builds]] | ||
Add your guide link there, then open it and start editing. | |||
Here | Here are two ready-to-use templates (click to expand, copy the contents): | ||
<div class="toccolours mw-collapsible mw-collapsed" style="width: | <div class="toccolours mw-collapsible mw-collapsed" style="width:100%; max-width:650px; overflow:auto;"> | ||
<div style="font-weight:bold;line-height:1.6;">Leveling Template</div> | <div style="font-weight:bold; line-height:1.6;">Leveling Template</div> | ||
<div class="mw-collapsible-content"> | <div class="mw-collapsible-content"> | ||
<nowiki> | |||
<noinclude>[[Category:Guides]]</noinclude> | <noinclude>[[Category:Guides]]</noinclude> | ||
{{Template:PageHeader | {{Template:PageHeader | ||
Line 577: | Line 549: | ||
== Tips and Tricks == | == Tips and Tricks == | ||
Content here. | Content here. | ||
</nowiki> | |||
</div></div> | </div></div> | ||
<div class="toccolours mw-collapsible mw-collapsed" style="width:100%; max-width:650px; overflow:auto;"> | |||
<div class="toccolours mw-collapsible mw-collapsed" style="width: | <div style="font-weight:bold; line-height:1.6;">Specialized Build Template</div> | ||
<div style="font-weight:bold;line-height:1.6;">Specialized Build Template</div> | |||
<div class="mw-collapsible-content"> | <div class="mw-collapsible-content"> | ||
<nowiki> | |||
<noinclude>[[Category:Guides]]</noinclude> | <noinclude>[[Category:Guides]]</noinclude> | ||
{{Template:PageHeader | {{Template:PageHeader | ||
Line 698: | Line 668: | ||
|ArtifactModifier= | |ArtifactModifier= | ||
}} | }} | ||
</nowiki> | |||
</div></div> | </div></div> |