SGML

Markdown Image Examples

image0 image1
Basic inline image examples
referenced-image1
Basic reference image example
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.

image0

An ![implicit image link](image0.png)

Rendered HTML

<p>An <img alt="implicit image link" src="image0.png">
</p>

image1

An ![implicit image link](image0.png "implicit image link with title")

Rendered HTML

<p>An <img alt="implicit image link" src="image0.png" title="implicit image link with title">
</p>

referenced-image1

A reference-style ![image link][refimg].

Further body text ...

[refimg]: <http://what.ever/image>

Rendered HTML

<p>A reference-style <img alt="image link" src="http://what.ever/image" title="">.
</p><p>Further body text ...
</p>