blob: b718d959db5325345d6f097496293058a177eb40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
```
% pandoc -f html -t djot
<h1 id="foo" class="a b">Hi</hi>
^D
{#foo .a .b}
# Hi
```
In this one the id is suppressed by the djot writer because
the same one would be automatically generated by the djot reader:
```
% pandoc -f html -t djot
<h2 id="Introduction">Introduction</h2>
^D
## Introduction
```
|