Comment Help

You can use the following HTML entities anywhere in comment.
Note: If you have a < character in your code, either follow it with a space or replace it with “<” (including the semicolon).

Description What you type What you see
Web link <a href=”http://mathworks.com”>MathWorks</a> MathWorks
Bold text <b >Bold text</b> Bold text
Quoted text <blockquote >Quoted text</blockquote >

Quoted text

Emphasized text <em>Emphasized text</em> Emphasized text
Italic text <i>Emphasized text</i> Italic text
Important text <strong>Important text</strong> Strong text
Code <pre>
a = magic(3);
sum(a)
</pre>
a = magic(3) 
sum(a)