Example Markup: Difference between revisions
Jump to navigation
Jump to search
imported>Jeremy m (Example headings moved to Example Markup) |
imported>Jeremy |
||
Line 32: | Line 32: | ||
stdx(badstdx) = 0; | stdx(badstdx) = 0; | ||
stdxapply(badstdx) = inf; | stdxapply(badstdx) = inf; | ||
Code using syntax highlighting: | |||
<source lang="matlab"> | |||
function test(in) | |||
%Test function. | |||
if true | |||
disp('blah') | |||
end | |||
</source> |
Revision as of 07:20, 9 September 2008
Level 2 Heading
Level 3 Heading
Level 4 Heading
Level 5 Heading
- Bulleted List Item
- Sub-item
Non-indented
- Standard Indent
- Sub-indent
Bold words
Italicized (emphasis) words
Equation:
Code using <pre>:
stdx(badstdx) = 0; stdxapply(badstdx) = inf;
Code using indent:
stdx(badstdx) = 0; stdxapply(badstdx) = inf;
Code using syntax highlighting:
function test(in)
%Test function.
if true
disp('blah')
end