File: auto_identifiers_ascii.md

package info (click to toggle)
haskell-commonmark-extensions 0.2.5.5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 368 kB
  • sloc: haskell: 2,574; makefile: 9
file content (19 lines) | stat: -rw-r--r-- 580 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## Auto identifiers ASCII (extension)

The `auto_identifiers_ascii` extension is like
`auto_identifiers` but limits identifiers to ASCII.
Accented Latin characters are converted into the
closest ASCII equivalent. Other non-ASCII characters
are simply omitted.

```````````````````````````````` example
# Heading with ä and α
.
<h1 id="heading-with-a-and-">Heading with ä and α</h1>
````````````````````````````````

```````````````````````````````` example
# Heading with ❤️
.
<h1 id="heading-with-heart">Heading with ❤️</h1>
````````````````````````````````