Compose tips
Text Formats
Plain text
- No HTML tags allowed.
- Web page addresses and e-mail addresses turn into links automatically.
- Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.

Comments
Allowed HTML tags: <a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <blockcode>
This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML "tags" is very easy. This table provides examples for each tag that is enabled on this site.
For more information see W3C's HTML Specifications or use your favorite search engine to find other sites that explain HTML.
<a href="http://www.bedroomlan.org">BedroomLAN</a><em>Emphasized</em><strong>Strong</strong><cite>Cited</cite><blockquote>Block quoted</blockquote><code>Coded</code>Coded<ul> <li>First item</li> <li>Second item</li> </ul><ol> <li>First item</li> <li>Second item</li> </ol><dl> <dt>First term</dt> <dd>First definition</dd> <dt>Second term</dt> <dd>Second definition</dd> </dl>Most unusual characters can be directly entered without any problems.
If you do encounter problems, try using HTML character entities. A common example looks like & for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:
&><"Syntax highlighting of source code can be enabled with the following tags:
<blockcode>".<asm>" for ASM source code, "<bash>" for Bash source code, "<bnf>" for bnf source code, "<c>" for C source code, "<cftasm>" for CFT Assembler source code, "<cpp>" for C++ source code, "<css>" for CSS source code, "<diff>" for Diff source code, "<dos>" for DOS source code, "<dot>" for dot source code, "<drupal5>" for Drupal 5 source code, "<drupal6>" for Drupal 6 source code, "<basic>" for FreeBasic source code, "<java>" for Java source code, "<javascript>" for Javascript source code, "<latex>" for LaTeX source code, "<lisp>" for Lisp source code, "<mcasm>" for mcasm source code, "<mysql>" for MySQL source code, "<pascal>" for Pascal source code, "<perl>" for Perl source code, "<php>" for PHP source code, "<python>" for Python source code, "<ruby>" for Ruby source code, "<scheme>" for Scheme source code, "<vhdl>" for VHDL source code, "<xml>" for XML source code.Options and tips:
asm" (for ASM), "bash" (for Bash), "basic" (for FreeBasic), "bnf" (for bnf), "c" (for C), "cftasm" (for CFT Assembler), "cpp" (for C++), "css" (for CSS), "diff" (for Diff), "dos" (for DOS), "dot" (for dot), "drupal5" (for Drupal 5), "drupal6" (for Drupal 6), "freebasic" (for FreeBasic), "html4strict" (for HTML), "java" (for Java), "javascript" (for Javascript), "latex" (for LaTeX), "lisp" (for Lisp), "mcasm" (for mcasm), "mysql" (for MySQL), "pascal" (for Pascal), "perl" (for Perl), "php" (for PHP), "python" (for Python), "ruby" (for Ruby), "scheme" (for Scheme), "vhdl" (for VHDL), "xml" (for XML).Defaults:
Examples:
<blockcode>foo = "bar";</blockcode><blockcode>foo = "bar";
baz = "foz";
</blockcode>
<blockcode lang="xml" linenumbers="normal">foo = "bar";
baz = "foz";
</blockcode>
and normal line numbers.
<blockcode language="xml" start="23" fancy="7">foo = "bar";
baz = "foz";
</blockcode>
line numbers starting from 23
and highlighted line numbers every 7th line.
<asm>foo = "bar";
baz = "foz";
</asm>
<asm start="23" fancy="7">foo = "bar";
baz = "foz";
<asm>
line numbers starting from 23
and highlighted line numbers every 7th line.