Difference between revisions of "Path of Diablo Wiki:About"

From Path of Diablo Wiki
Jump to: navigation, search
(Wiki Editing)
(Wiki Editing)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
== Welcome to the PoD Wiki ==
 +
 
{| class="wikitable"
 
{| class="wikitable"
 
|<span style="color: brown">Anyone can login to their PoD account and edit the pages of this wiki. So please; if you see outdated or missing information, help us fix it. Thanks!</span>
 
|<span style="color: brown">Anyone can login to their PoD account and edit the pages of this wiki. So please; if you see outdated or missing information, help us fix it. Thanks!</span>
 
|}
 
|}
 
  
 
'''<span style="color: teal">Please do not fill the wiki with vanilla information. This wiki should only contain information about PoD changes. Therefore it can be implied that if something is not on the wiki, it has not changed.</span>'''
 
'''<span style="color: teal">Please do not fill the wiki with vanilla information. This wiki should only contain information about PoD changes. Therefore it can be implied that if something is not on the wiki, it has not changed.</span>'''
  
 
== Wiki Editing ==
 
== Wiki Editing ==
This section will provide a brief intro to editing the PoD wiki, with a focus on the formatting of skills.
+
Please see the [[Path_of_Diablo_Wiki_talk:About | discussion tab of this page]] for a discussion about the wiki, what needs to be done, and a brief intro to editing the PoD wiki, with a focus on the formatting of skills.
 
 
=== The skill descriptions ===
 
 
 
Using  [[Fire_Spells#Fire_Wall|Fire Wall]] as an example, the existing skill descriptions look like this:
 
 
 
'''Description:''' Creates a wall of flame that blocks of burns your enemies.
 
 
 
'''Required Level:''' 18
 
 
 
'''Prerequisites:''' Blaze, Immolate
 
 
 
This is the code makes it appear like that:
 
<pre>
 
'''Description:''' Creates a wall of flame that blocks of burns your enemies.
 
 
 
'''Required Level:''' 18
 
 
 
'''Prerequisites:''' Blaze, Immolate
 
</pre>
 
 
 
''You'll notice that the words in '''bold''' have three single quotes (<nowiki>'''</nowiki>) surrounding them, this is the code formatting that makes characters bold in the wiki. ''
 
 
 
The modern standard for skill is to include a picture of the skill icon and clickable links in the list of prerequisites.
 
Still picking on [[Fire_Spells#Fire_Wall|Fire Wall]], the end product should look like this:
 
 
 
<!-- If skill doesnt exist in original Diablo 2 remove comment marks below -->
 
<!-- <span style="color:green">'''New skill'''</span>  -->
 
{|
 
|-
 
|
 
{| <!-- Description table -->
 
|rowspan="3" style="vertical-align:top; padding:0.5em 0.5em 0.5em 0.5em; width:5%"|https://pathofdiablo.com/wiki/images/sorceress/Fire%20Wall.png ||'''Description:''' Creates a wall of flame that blocks of burns your enemies'''
 
|-
 
|'''Required Level:''' 18
 
|-
 
|'''Prerequisites:'''  [[Fire_Spells#Blaze|Blaze]], [[Fire_Spells#Immolate|Immolate]]
 
|}
 
|-
 
|
 
 
 
The code to make this happen is a lot longer than the code to make the original happen, and it looks like this:
 
<pre>
 
{|
 
|-
 
|
 
{| <!-- Description table -->
 
|rowspan="3" style="vertical-align:top; padding:0.5em 0.5em 0.5em 0.5em; width:5%"|https://pathofdiablo.com/wiki/images/sorceress/Fire%20Wall.png ||'''Description:''' Creates a wall of flame that blocks of burns your enemies'''
 
|-
 
|'''Required Level:''' 18
 
|-
 
|'''Prerequisites:'''  [[Fire_Spells#Blaze|Blaze]],  [[Fire_Spells#Immolate|Immolate]]
 
|}
 
|-
 
|</pre>
 
 
 
In that example, we have 4 pieces of information that will vary from skill to skill and need to be edited to reflect the skill:
 
*The skill icon
 
*The skill description
 
*The level required for the skill
 
*Any prerequisites required
 
The labels for Description, Required Level, and Prerequisites are all in bold.
 
 
 
The most obvious changes are the skills picture/icon and the clickable links in the prereq's list. All icons can be found here:
 
https://pathofdiablo.com/wiki/images/
 
 
 
In there you'll see a folder for every class, and all skill icons for that classes skills can be found in its folder. Adding the link to the [[Fire_Spells#Fire_Wall|Fire Wall]] icon includes the picture in the description. You'll see a "pipe" <nowiki>|</nowiki> character before the icon link and a double pipe ( <nowiki>||</nowiki> ) after it, as well as in various other places in the code. These pipes help control placement and formatting of text throughout the wiki pages and are necessary to make it appear the way it's supposed to.
 
 
 
The narrative skill description and level required are self explanatory, and generally I just copy the existing description from the old display into the new display.
 
 
 
For skill prerequisites, the standard is for clickable links to the skills. For [[Fire_Spells#Fire_Wall|Fire Wall]] to get [[Fire_Spells#Blaze|Blaze]] and [[Fire_Spells#Immolate|Immolate]] as clickable links instead of just text, we'll be using the <nowiki>[[Fire_Spells#Blaze|Blaze]],  [[Fire_Spells#Immolate|Immolate]]</nowiki> skill links in the code. To find copy/pasteable links to skills, navigate to the [[Main_Page | home page of the wiki]] and click on the relevant class link under the '''Character Attributes''' heading, and then click that classes Discussion tab. There, you'll see all that classes skills listed along with links that you can copy and paste. For this example we've been looking at sorceress skills, [[Talk:Sorceress|links for which can be found here.]]
 

Latest revision as of 19:33, 13 August 2023

Welcome to the PoD Wiki

Anyone can login to their PoD account and edit the pages of this wiki. So please; if you see outdated or missing information, help us fix it. Thanks!

Please do not fill the wiki with vanilla information. This wiki should only contain information about PoD changes. Therefore it can be implied that if something is not on the wiki, it has not changed.

Wiki Editing

Please see the discussion tab of this page for a discussion about the wiki, what needs to be done, and a brief intro to editing the PoD wiki, with a focus on the formatting of skills.