File: text_titlecase.py

package info (click to toggle)
inkscape 1.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 402,900 kB
  • sloc: cpp: 547,256; python: 72,677; ansic: 63,355; javascript: 3,864; xml: 2,345; sh: 1,667; makefile: 824; perl: 614
file content (33 lines) | stat: -rwxr-xr-x 718 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python3
"""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()