Code

Snapping: improve calculation of metrics for scaling, modify some comments, and remov...
[inkscape.git] / share / extensions / text_lowercase.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.lower()
8 c = C()
9 c.affect()