(txt)
| 84 | |
| 85 | |
| 86 | def asciize(txt): |
| 87 | no_marks = shave_marks_latin(dewinize(txt)) # <5> |
| 88 | no_marks = no_marks.replace('ß', 'ss') # <6> |
| 89 | return unicodedata.normalize('NFKC', no_marks) # <7> |
| 90 | # end::ASCIIZE[] |
nothing calls this directly
no test coverage detected