summaryrefslogtreecommitdiffstats
path: root/share/extensions/text_uppercase.py
blob: 772c1fd880f05e3a8630d1e6a543c7d235861086 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
import chardataeffect, inkex, string

class C(chardataeffect.CharDataEffect):
  def process_chardata(self,text, line=False, par=False):
    return text.upper()

c = C()
c.affect()