Difference between revisions of "Forum cheatsheet"
From Wiki
m |
|||
(4 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | + | Markup tags that are supported when posting in public threads and private messages. | |
− | |||
{| border="1" cellpadding="10" cellspacing="0.01" | {| border="1" cellpadding="10" cellspacing="0.01" | ||
+ | |- style="background:lightblue; color:white" | ||
+ | !Allowed markup | ||
+ | !Source | ||
+ | !Output | ||
|- | |- | ||
!a | !a | ||
Line 11: | Line 14: | ||
|- | |- | ||
!br | !br | ||
− | |<br>|| The <br> tag inserts a single line break.<br>The <br> tag is an empty tag (means that it has no end tag - the following is wrong: <br> </br>) | + | |<br>|| The <br> tag inserts a single line break.<br>The <br> tag is an empty tag (means that it has no end tag - the following is wrong: <br> </br>). |
|- | |- | ||
!code | !code | ||
Line 32: | Line 35: | ||
|- | |- | ||
!img | !img | ||
− | |<img src=" url " /> || embedding image | + | |<img src=" url " /> || embedding image (NB! there is a spcace between " and / ) |
+ | |- | ||
+ | !pre | ||
+ | | <pre> </pre>||The pre element defines preformatted text. <br>The text enclosed in the pre element usually preserves spaces and line breaks. <br>The text renders in a fixed-pitch font. | ||
|} | |} | ||
+ | |||
+ | [[Category:Geni forum]] |
Latest revision as of 03:34, 2 June 2008
Markup tags that are supported when posting in public threads and private messages.
Allowed markup | Source | Output |
---|---|---|
a | <a href="URL goes here">hyperlinked text</a> | hyperlinked text |
blockquote | <blockquote>adds a frame around text</blockquote> | adds a frame around text |
br | <br> | The <br> tag inserts a single line break. The <br> tag is an empty tag (means that it has no end tag - the following is wrong: <br> </br>). |
code | <code>Defines computer code text</code> | Defines computer code text
|
em | <em>Renders as emphasized text</em> | Renders as emphasized text |
strong | <strong>Renders as strong emphasized text</strong> | Renders as strong emphasized text |
ul | <ul> <li>ordered list</li> <li>unordered list</li> </ul> |
There are two types of list
|
ol | <ol> <li>ordered list</li> <li&>unordered list</li> </ol> |
There are two types of list
|
li | <li> </li> | The <li> tag defines a list item. The <li> tag is used in both ordered (<ol>) and unordered lists (<ul>). |
img | <img src=" url " /> | embedding image (NB! there is a spcace between " and / ) |
pre | <pre> </pre> | The pre element defines preformatted text. The text enclosed in the pre element usually preserves spaces and line breaks. The text renders in a fixed-pitch font. |