Cross Reference: text_uppercase.py
xref
: /
inkscape
/
share
/
extensions
/
text_uppercase.py
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
#!/
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
()