2 from textile import Textile
7 class TextilePL(Textile):
8 """Polish version of Textile.
10 Changes opening quote to Polish lower-double.
12 glyph_definitions = dict(Textile.glyph_definitions,
13 quote_double_open = '„'
18 return TextilePL().parse(text)
21 def textile_restricted_pl(text):
22 return TextilePL(restricted=True, lite=True, noimage=True).parse(