2022-04-02 15:29:34 +02:00
|
|
|
+++
|
|
|
|
description = "Some testing for different styles of image links"
|
|
|
|
title = "Images"
|
|
|
|
+++
|
|
|
|
|
|
|
|
Some testing for different styles of image links.
|
|
|
|
|
|
|
|
## Markdown
|
|
|
|
|
2022-11-18 16:45:20 +01:00
|
|
|
### Resource SVG
|
|
|
|
|
|
|
|
![Magic](test.svg?classes=shadow)
|
|
|
|
|
2022-04-02 15:29:34 +02:00
|
|
|
### Relative to page
|
|
|
|
|
2022-11-06 16:26:11 +01:00
|
|
|
![Magic](magic.gif?classes=shadow)
|
2022-04-02 15:29:34 +02:00
|
|
|
|
|
|
|
### Relative to page up level
|
|
|
|
|
2022-07-14 18:28:56 +02:00
|
|
|
![Magic](../images/magic.gif?classes=shadow&height=50px)
|
2022-04-02 15:29:34 +02:00
|
|
|
|
2022-11-18 16:45:20 +01:00
|
|
|
### Static SVG
|
2022-04-02 15:29:34 +02: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 16:45:20 +01:00
|
|
|
### Resource SVG
|
|
|
|
|
|
|
|
<p><img src="test.svg?classes=shadow"></p>
|
|
|
|
|
2022-04-02 15:29:34 +02:00
|
|
|
### Relative to page
|
|
|
|
|
2022-11-06 16:26:11 +01:00
|
|
|
<p><img src="magic.gif?classes=shadow"></p>
|
2022-04-02 15:29:34 +02:00
|
|
|
|
|
|
|
### Relative to page up level
|
|
|
|
|
2022-07-14 18:28:56 +02:00
|
|
|
<p><img src="../images/magic.gif?classes=shadow&height=50px"></p>
|
2022-04-02 15:29:34 +02:00
|
|
|
|
2022-11-18 16:45:20 +01:00
|
|
|
### Static SVG
|
2022-04-02 15:29:34 +02: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>
|