1 from textile import Textile
4 class TextilePL(Textile):
5 """Polish version of Textile.
7 Changes opening quote to Polish lower-double.
9 glyph_definitions = dict(Textile.glyph_definitions,
10 quote_double_open = '„'
15 return TextilePL().parse(text)
18 def textile_restricted_pl(text):
19 return TextilePL(restricted=True, lite=True,
20 noimage=True, auto_link=False).parse(