Taryl needs a really simple xhtml reference, so here it is:
A link, such as Peter's Crappy Page is done this way:
<a href="http://www.giessel.org/index.php/blog/category/1.html">Peter's Crappy Page</a>
A new paragraph can be created by using the break tag:
<br />
An image, such as:
![]()
Is technically done this way:
<img src="http://www.leela.ws/~leela/gallery/thumbs/702_1.png" style="width:120px;height:90px" alt="My Server" />
It can be simplified to:
<img src="http://www.leela.ws/~leela/gallery/thumbs/702_1.png" />
Bold text is done this way:
<b>Bolt text</b>
Italic text is done this way:
<i>Italic text</i>
Carrots need to be written this way: < = <, > = >
Lists (such as bulleted lists) need to be written as such:
- Item 1
- Item 2
<ul> (unordered list - not numbered, aka bulleted)
<li>Item 1</li>
<li>Item 2</li>
</ul> (don't forget the close tags)