cases/images.skeleton
42 lines · 515 bytes
1<h2>
2"Bare image"
3</h2>
4<p>
5<img src="diagram.png">
6</p>
7<h2>
8"Captioned figure"
9</h2>
10<figure>
11<img src="pipeline.svg">
12<figcaption>
13"Figure 1: The pipeline, end to end"
14</figcaption>
15</figure>
16<h2>
17"Caption with markup"
18</h2>
19<figure>
20<img src="chart.png">
21<figcaption>
22"Figure 2: A"
23<em>
24"stylised"
25</em>
26"chart"
27</figcaption>
28</figure>
29<h2>
30"Quoted attribute values"
31</h2>
32<figure>
33<img src="cat.jpg">
34</figure>
35<h2>
36"Image with a description is a link"
37</h2>
38<p>
39<a href="diagram.png">
40"the diagram"
41</a>
42</p>