mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 13:45:49 +00:00
Unicode characters need not be escaped for html5, and still won't be. See #9905.
21 lines
304 B
Markdown
21 lines
304 B
Markdown
```
|
|
% pandoc -t html5
|
|
# Section Ψ {#Ψ}
|
|
|
|
look at [Section Ψ](#Ψ).
|
|
^D
|
|
<h1 id="Ψ">Section Ψ</h1>
|
|
<p>look at <a href="#Ψ">Section Ψ</a>.</p>
|
|
|
|
```
|
|
```
|
|
% pandoc -t html4
|
|
# Section Ψ {#Ψ}
|
|
|
|
look at [Section Ψ](#Ψ).
|
|
^D
|
|
<h1 id="Ψ">Section Ψ</h1>
|
|
<p>look at <a href="#%CE%A8">Section Ψ</a>.</p>
|
|
|
|
```
|