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>
````````````````````````````````
|