SGML

Markdown Inline Link Examples

inline-link0
Basic inline link example
inline-link1
Inline link example with markdown span-level syntax in link text
inline-link4
Inline link example with link title
Note: To produce HTML from the example markdown sources, copy and paste an example source, store it into a file with the ".md" file extension, and invoke
sgmlproc <your-file.md>
where <your-file.md> is replaced by the actual file used for storing.

inline-link0

This is to test [inline links](#).

Rendered HTML

<p>This is to test <a href="#">inline links</a>.
</p>

inline-link1

This is to test [an *inline* link](http://example.com) having markdown syntax.

Rendered HTML

<p>This is to test <a href="http://example.com/">an <em>inline</em> link</a> having markdown syntax.
</p>

inline-link4

This tests an [inline link](http://example.com "inline link title") with title.

Rendered HTML

<p>This tests an <a href="http://example.com/" title="inline link title">inline link</a> with title.
</p>