MSU Masthead

Metlab site.css: Code

Wrap a block of code in these tags:

<pre class="code">for(int i=0;  i&lt;10;  i++)
{
    do_something();
}
</pre>

This will appear as:

for(int i=0;  i<10;  i++)
{
    do_something();
}

When pasting in code, the &, <, and > characters have to be changed to &amp;, &lt; and &gt; due to HTML requirements.

Add the full class to make the code presentation wider:

 

<pre class="code full">for(int i=0;  i&lt;10;  i++)
{
    do_something();
}
</pre>

This will appear as:

for(int i=0;  i<10;  i++)
{
    do_something();
}