The Turkish undotted-i (`ı`) is not getting converted to it's ascii equivalent (`i`) as expected. Actual: ```bash $ pandoc -f markdown+ascii_identifiers -t native <<< "# Işık" [Header 1 ("isk",[],[]) [Str "I\351\305k"]] ``` Expected: ```bash $ pandoc -f markdown+ascii_identifiers -t native <<< "# Işık" [Header 1 ("isik",[],[]) [Str "I\351\305k"]] ``` Note that `iconv` handles this as expected: ```bash $ echo Işık | iconv -f utf-8 -t ascii//translit Isik ```