summaryrefslogtreecommitdiffstats
path: root/share/extensions/text_titlecase.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/text_titlecase.py')
-rwxr-xr-xshare/extensions/text_titlecase.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/share/extensions/text_titlecase.py b/share/extensions/text_titlecase.py
new file mode 100755
index 0000000..818d353
--- /dev/null
+++ b/share/extensions/text_titlecase.py
@@ -0,0 +1,33 @@
+#!/usr/bin/env python
+"""Convert to title case"""
+
+import inkex
+
+
+class TitleCase(inkex.TextExtension):
+ """To titlecase"""
+
+ word_ended = True
+
+ def process_chardata(self, text):
+ ret = ""
+ newline = True
+ for char in text:
+ if char.isspace() or newline:
+ self.word_ended = True
+ if not char.isspace():
+ newline = False
+
+ if self.word_ended and char.isalpha():
+ ret += char.upper()
+ self.word_ended = False
+ elif char.isalpha():
+ ret += char.lower()
+ else:
+ ret += char
+
+ return ret
+
+
+if __name__ == "__main__":
+ TitleCase().run()