Code

Updated the text of the JessyInk effect extension to make translation easier (bug...
[inkscape.git] / share / extensions / text_uppercase.py
1 #!/usr/bin/env python
2 import chardataeffect, inkex, string
4 class C(chardataeffect.CharDataEffect):
5   def process_chardata(self,text, line=False, par=False):
6     return text.upper()
8 c = C()
9 c.affect()