diff options
Diffstat (limited to 'nfc')
| -rwxr-xr-x | nfc | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#!/usr/bin/env python3 + +import fileinput +import unicodedata +import sys + +for line in fileinput.input(): + sys.stdout.write(unicodedata.normalize("NFC", line)) |
