From b31ace79ea5f6b3f279c544cd3a443d6fbf2a24d Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Thu, 26 Feb 2026 10:05:59 +0000 Subject: overhaul --- nfc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 nfc (limited to 'nfc') diff --git a/nfc b/nfc new file mode 100755 index 0000000..4af1aef --- /dev/null +++ b/nfc @@ -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)) -- cgit v1.2.3