Tips for making comments
When leaving comments you can make use of HTML codes in order to format your text. For example if you type the following:
<i>Text</i>
You will get this:
Text
Other examples of formatting codes include:
<u>underline</u>
<b>bold</b>
<strike>strike</strike>
<sub>subscript</sub>
<sup>superscript</sup>
<code>monospace</code>If you want to include weblinks use the following code:
<a href="http://www.example.com">Your Text Here</a>
Which gives:
Your Text HereIf you want to include an image in your comment use this code, inserting the link to your image in place of the link given here:
<img src="http://example.com/example.jpg">
Please note that some text editors use “ instead of " (ie. they use slanted quote marks instead of straight quote marks). Microsoft Word does this. This can cause HTML codes involving weblinks and images to break, so please exercise caution (or use a decent text editor).
When quoting others use this code:
<blockquote>Text</blockquote>
Which gives:Text
When you want to start a new paragraph use </br> </br>. Each </br> causes a line break, and you will need two of them for a paragraph break.
Please note that comments with two or more weblinks will get placed into a moderation queue, which will delay your comment from appearing. You can avoid this by restricting your comment to a single weblink.
Happy commenting!