A language-neutral conformance corpus for org-mode to HTML renderers.

conformance html org-mode testing

cases/elements.skeleton

main
org-conformance/cases/elements.skeleton history · blame · raw

82 lines · 726 bytes

 1<h2>
 2"Code and tables"
 3</h2>
 4<pre>
 5<code>
 6"fn main() { println!(\"hello\"); }"
 7</code>
 8</pre>
 9<table>
10<thead>
11<tr>
12<th>
13"Name"
14</th>
15<th>
16"Score"
17</th>
18</tr>
19</thead>
20<tbody>
21<tr>
22<td>
23"alpha"
24</td>
25<td>
26"10"
27</td>
28</tr>
29<tr>
30<td>
31"beta"
32</td>
33<td>
34"20"
35</td>
36</tr>
37</tbody>
38</table>
39<h2>
40"Links and footnotes"
41</h2>
42<p>
43"An external link:"
44<a href="https://example.com">
45"Example"
46</a>
47"and an id link"
48<a href="#abc-123">
49"abc-123"
50</a>
51"."
52</p>
53<p>
54"Text with a footnote reference."
55<sup>
56<a href="#fn-1">
57"1"
58</a>
59</sup>
60</p>
61<h2>
62"Blocks"
63</h2>
64<blockquote>
65<p>
66"A quoted paragraph."
67</p>
68</blockquote>
69<hr>
70<section>
71<hr>
72<ol>
73<li>
74<p>
75"The footnote definition."
76</p>
77<a href="#fnr-1">
78"↩"
79</a>
80</li>
81</ol>
82</section>