Wiki Template

PARAGRAPH TAG Putting in Code Snippits Adding Items to Sidebar

HTML PARAGRAPH TAG

the <p> tag in html is used for a paragraph 
this is a new line

Putting code snippits

when including code snippits (this only applies to HTML) in these wiki pages you need to use the <code> tag followed by running the HTML tag through a HTML encoder like this one. After this put the new encoded test inside the mentioned html tag (hopefully your still keeping up) so the HTML should look something like this <code>&#60;p&#62;&#60;/p&#62;</code>

Adding items to the sidebar

when adding items to the sidebar you first need to make sure you have set the id of the header you want your link to jump to. for example <h2 id="titleofarticle"></h2>. Then put an a tag (<a href=""></a>) inside your div with the class "sideNav" (<div class="sideNav"> </div>). to finish this all off you make the href property in your a tag #nameofyourheadersid it should look something like this.

<div class="sideNav">
<a href="#titleofwikientry" class="sideNavLink">titleofwikientry</a>
</div>

<div class="content">
<h2 id="titleofwikientry">TITLE OF ENTRY</h2>
<p>sample paragraph</p>
</div>

Note: div classes properties are assigned in the docs.css file