blob: c5e9e6279fa26fb2a63ccb3d9a08171e4303eb43 (
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.lower()
c = C()
c.affect()
|