size: 391 B

1Raw inline content:
2
3```
4`<a>`{=html}
5.
6<p><a></p>
7```
8
9Raw block-level content:
10
11````
12``` =html
13<table>
14```
15.
16<table>
17````
18
19You can't mix regular attributes and raw syntax:
20
21````
22`<b>foo</b>`{=html #id}
23```
24.
25<p><code>&lt;b&gt;foo&lt;/b&gt;</code>{=html #id}
26<code></code></p>
27````
28
29Attributes attached to raw content will just be ignored:
30
31````
32{.foo}
33``` =html
34<table>
35```
36.
37<table>
38````