cases/blocks.skeleton
77 lines · 807 bytes
1<h2>
2"Quote"
3</h2>
4<blockquote>
5<p>
6"A quoted paragraph with"
7<em>
8"markup"
9</em>
10"."
11</p>
12<p>
13"And a second paragraph."
14</p>
15</blockquote>
16<h2>
17"Center"
18</h2>
19<p>
20"Centred text."
21</p>
22<h2>
23"Example"
24</h2>
25<pre>
26"Verbatim *not bold* text. Indentation preserved."
27</pre>
28<h2>
29"Export"
30</h2>
31<aside>
32"Raw HTML passes through."
33</aside>
34<h2>
35"Source"
36</h2>
37<pre>
38<code>
39"def greet(name): return f\"hello {name}\""
40</code>
41</pre>
42<pre>
43<code>
44"plain block, no language"
45</code>
46</pre>
47<h2>
48"Nested"
49</h2>
50<blockquote>
51<p>
52"A quote containing a source block:"
53</p>
54<pre>
55<code>
56"echo hi"
57</code>
58</pre>
59</blockquote>
60<h2>
61"Verse"
62</h2>
63<p>
64"Line breaks are the point"
65<br>
66"and indentation survives."
67</p>
68<h2>
69"A named special block"
70</h2>
71<p>
72"Contents are"
73<strong>
74"org"
75</strong>
76", not literal text."
77</p>