Difference between revisions of "Forum cheatsheet"
From Wiki
m |
m |
||
Line 2: | Line 2: | ||
Put code in between `backticks`. | Put code in between `backticks`. | ||
− | {| border="1" cellpadding=" | + | {| border="1" cellpadding="10" cellspacing="0.01" |
|- | |- | ||
− | + | !a | |
+ | |<a href="URL goes here">hyperlinked text</a>||[http://here hyperlinked text] | ||
|- | |- | ||
− | + | !blockquote | |
+ | ||<blockquote>adds a frame around text</blockquote>|| <pre>adds a frame around text</pre> | ||
|- | |- | ||
− | |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> Use the <br> tag to enter blank lines, not to separate paragraphs. | ||
|- | |- | ||
− | |code||< | + | !code |
+ | |<code>Defines computer code text</code> || <code>Defines computer code text</code> | ||
|- | |- | ||
− | |em|| | + | !em |
+ | |<em>Renders as emphasized text</em> || <em>Renders as emphasized text</em> | ||
|- | |- | ||
− | |strong||< | + | !strong |
+ | |<strong>Renders as strong emphasized text</strong> || <strong>Renders as strong emphasized text</strong> | ||
|- | |- | ||
− | |ul||< | + | !ul |
+ | |<ul><br><li>ordered list</li><br><li>unordered list</li><br> </ul>|| There are two types of list <ul><li>ordered list</li><li>unordered list</li></ul> The <ul> tag defines an unordered list. | ||
|- | |- | ||
− | |ol|| < | + | !ol |
+ | |<ol><br><li>ordered list</li><br><li&>unordered list</li><br> </ol>|| There are two types of list <ol><li>ordered list</li><li>unordered list</li></ol> The <ol> tag defines an ordered list. | ||
|- | |- | ||
− | + | !li | |
+ | | <li> </li>|| The <li> tag defines a list item. <br>The <li> tag is used in both ordered (<ol>) and unordered lists (<ul>). | ||
|- | |- | ||
− | + | !img | |
− | + | |<img src=" url " /> || embedding image | |
|} | |} |
Revision as of 09:37, 20 January 2008
Allowed markup: a blockquote br code em strong ul ol li img. Put code in between `backticks`.
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>). Use the <br> tag to enter blank lines, not to separate paragraphs. |
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 |