Example Markup: Difference between revisions

From Eigenvector Research Documentation Wiki
Jump to navigation Jump to search
imported>Jeremy
imported>Jeremy
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 5: Line 5:
====Level 4 Heading====
====Level 4 Heading====


=====Level 5 Heading=====


* Bulleted List Item
* Bulleted List Item
Line 14: Line 13:
:Standard Indent
:Standard Indent
::Sub-indent
::Sub-indent
Numbered List
# numbered items
# another numbered item
#: sub content of that last item
#: no numbers here
# continued list after sub-content




Line 32: Line 38:
   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>

Latest revision as of 10:56, 15 March 2010

Level 2 Heading

Level 3 Heading

Level 4 Heading

  • Bulleted List Item
    • Sub-item


Non-indented

Standard Indent
Sub-indent

Numbered List

  1. numbered items
  2. another numbered item
    sub content of that last item
    no numbers here
  3. continued list after sub-content


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