You must be logged in to do that (write wiki)
Bug reportcreate topic
Markdown Quick Reference
Refer to Markdown Syntax at Daring Fireball for a complete syntax reference.
|
*text* _text_ |
Emphasized (Italic) text. Surround the words with single asterisks (*) or single underscores (_). |
|
**text** __text__ |
Extra emphasized (Bold) text. Surround the words with double asterisks (**) or double underscores (__). |
|
Line break - two spaces at end. This is the next line. Text preceded by empty line makes a paragraph. |
To force a line break, add two spaces to the end of the line and press Enter. For a normal paragraph, just separate lines of text with an empty line. |
| `a span of code with <html>` | A span of code inside a line of text is surrounded by backticks (`). You can use HTML tags inside backticks and they won't be interpreted as HTML. |
a + b == c
second code line in block
HTML tags aren't interpreted here
|
A line beginning with four spaces is part of a preformatted code block. You can use HTML tags inside a code block and they won't be interpreted as HTML. |
* list item * list item |
A bulleted (unordered) list. Instead of an asterisk, you can use a dash (-) or a plus sign (+). |
1. Do this first 2. Do this second |
A numbered list. The specific numbers don't matter. |
|
# Heading 1 or Heading 1 ========= ## Heading 2 or Heading 2 --------- ### Heading 3 #### Heading 4 ##### and so on... |
Headings. More hash mark signs (#) produce smaller headings. An alternative for level 1 and level 2 headings is to use equals signs (=) under the level one text and dashes (-) under the level two text. |
[Link Text](http://kenai.com "Optional Title") |
A hyperlink of form <a href="http://kenai.com" title="Optional Title">Link Text</a>. |
| <http://kenai.com> | A hyperlink of form <a href="http://kenai.com">http://kenai.com</a>. |
| \* escape markup characters with backslash \* | You can use the backslash (\) to escape markup characters like * _ ` [ ] { } ( ) \ ! # - + . |
|
--- *** ___ - - - * * * _ _ _ ------------------------- ************************* _________________________ |
Horizontal rule. Use three or more hyphens, asterisks, or underscores on a line by themselves. You can use spaces between the hyphens or asterisks. Note: For consecutive horizontal rules, you need to separate each line with an extra newline. |
 |
An image link of form <img src="/path/to/img.jpg" alt="Alt text" title="Optional title">. Don't forget to put an exclamation mark (!) first! Note: Use the title attribute rather than the alt text to get mouse-over popup text. |
|
<table> <tr> <td> cell 1 *this isn't italic* </td> <td> cell 2 <em>this is italic</em> </td> </tr> </table> |
Use standard HTML for a table. You can also use other HTML tags. Note that Markdown syntax will not be processed inside an HTML tag. |
BBCode Quick reference
Refer to BBCode on Wikipedia for more syntax information.
| [i]italics[/i] | italics |
| [b]bold[/b] | bold |
| [i][b]italics and bold[/b][/i] | italics and bold |
| [u]underlined[/u] | underlined |
| [s]strikethrough[/u] | |
| [color=green]green text[/color] | Set text color to green. Use standard HTML color names: aqua, black, blue, fuchsia, green, gray, lime, maroon, navy, olive, purple, red, teal, and, shown on a black backgound, white, silver, yellow. |
|
[size=xx-small]xx-small text[/size] [size=x-small]x-small text[/size] [size=small]small text[/size] [size=medium]medium text[/size] [size=large]large text[/size] [size=12]text with 12px font[/size] |
xx-small text x-small text small text medium text large text text with 12px font |
| [center]center text[/center] | |
| [quote]blockquoted text[/quote] |
|
| [code]monospaced text[/code] | monospaced text |
[list] [*]Red [*]Blue [*]Yellow [/list] |
A bulleted list. |
[list=1] [*]Do this first. [*]And then do this. [*]And finish up with this. [/list] |
A numbered list. [list=a] orders the list using a, b, c, ... [list=A] orders the list using A, B, C, ... [list=i] orders the list using i, ii, iii, ... [list=I] orders the list using I, II, III, ... |
|
Line break - end line with a Return. This is the next line. |
To force a line break, press Enter at the end of the line. Each line break becomes a <br/>. |
[url]http://kenai.com[/url] [url=http://kenai.com]Link Text[/url] |
Hyperlinks of form <a href="http://kenai.com">http://kenai.com</a> and <a href="http://kenai.com">Link Text</a>. |
| [email]noreply@kenai.com[/email] | An email address of form <a href="mailto:noreply@kenai.com">noreply@kenai.com</a>. |
[img]http://www.pugs.nl/images/pug221.jpg[/img] |
An image link of form <img src="http://www.pugs.nl/images/pug221.jpg">. |





