2022-04-02 13:29:34 +00:00
|
|
|
+++
|
|
|
|
description = "Some testing for different styles of image links"
|
|
|
|
title = "Images"
|
|
|
|
+++
|
|
|
|
|
|
|
|
Some testing for different styles of image links.
|
|
|
|
|
|
|
|
## Markdown
|
|
|
|
|
2022-11-18 15:45:20 +00:00
|
|
|
### Resource SVG
|
|
|
|
|
|
|
|
![Magic](test.svg?classes=shadow)
|
|
|
|
|
2022-04-02 13:29:34 +00:00
|
|
|
### Relative to page
|
|
|
|
|
2022-11-06 15:26:11 +00:00
|
|
|
![Magic](magic.gif?classes=shadow)
|
2022-04-02 13:29:34 +00:00
|
|
|
|
|
|
|
### Relative to page up level
|
|
|
|
|
2022-07-14 16:28:56 +00:00
|
|
|
![Magic](../images/magic.gif?classes=shadow&height=50px)
|
2022-04-02 13:29:34 +00:00
|
|
|
|
2022-11-18 15:45:20 +00:00
|
|
|
### Static SVG
|
2022-04-02 13:29:34 +00:00
|
|
|
|
|
|
|
![Logo](/images/logo.svg?classes=shadow&height=50px)
|
|
|
|
|
|
|
|
### External fully qualified
|
|
|
|
|
|
|
|
![Minion](https://octodex.github.com/images/minion.png?classes=shadow&height=50px)
|
|
|
|
|
|
|
|
### External without scheme
|
|
|
|
|
|
|
|
![Minion](//octodex.github.com/images/minion.png?classes=shadow&height=50px)
|
|
|
|
|
|
|
|
### External without scheme and scheme separator
|
|
|
|
|
|
|
|
![Minion](octodex.github.com/images/minion.png?classes=shadow&height=50px)
|
|
|
|
|
|
|
|
## HTML
|
|
|
|
|
2022-11-18 15:45:20 +00:00
|
|
|
### Resource SVG
|
|
|
|
|
|
|
|
<p><img src="test.svg?classes=shadow"></p>
|
|
|
|
|
2022-04-02 13:29:34 +00:00
|
|
|
### Relative to page
|
|
|
|
|
2022-11-06 15:26:11 +00:00
|
|
|
<p><img src="magic.gif?classes=shadow"></p>
|
2022-04-02 13:29:34 +00:00
|
|
|
|
|
|
|
### Relative to page up level
|
|
|
|
|
2022-07-14 16:28:56 +00:00
|
|
|
<p><img src="../images/magic.gif?classes=shadow&height=50px"></p>
|
2022-04-02 13:29:34 +00:00
|
|
|
|
2022-11-18 15:45:20 +00:00
|
|
|
### Static SVG
|
2022-04-02 13:29:34 +00:00
|
|
|
|
|
|
|
<p><img src="/images/logo.svg?classes=shadow&height=50px"></p>
|
|
|
|
|
|
|
|
### External fully qualified
|
|
|
|
|
|
|
|
<p><img src="https://octodex.github.com/images/minion.png?classes=shadow&height=50px"></p>
|
|
|
|
|
|
|
|
### External without scheme
|
|
|
|
|
|
|
|
<p><img src="//octodex.github.com/images/minion.png?classes=shadow&height=50px"></p>
|
|
|
|
|
|
|
|
### External without scheme and scheme separator
|
|
|
|
|
|
|
|
<p><img src="octodex.github.com/images/minion.png?classes=shadow&height=50px"></p>
|