New This website is new, your feedback will help us to improve it.

Code

Use the <code> tag to denote snippets of code. Any angle brackets < > may need escaping with &lt; and &gt;.

var foo = 'bar';

<code>var foo = 'bar';</code>

Use the <pre> tag to denote multiple lines of code, or where formatting need to be preserved. Any angle brackets may need escaping with &lt; and &gt;.

    var foo = 'bar';
    var baz = foo;
<pre>
  var foo = 'bar';
  var baz = foo;
</pre>

Use the <var> tag for indicating variables.

e = mc2

<var>e</var> = <var>m</var><var>c</var><sup>2</sup>

Type ls to list he contents of the current directory.

Type <kbd>ls</kbd> to list he contents of the current directory.

Use the <samp> tag for indicating the output of a program.

Hello World!

<samp>Hello World!</samp>