From: Petr Viktorin Date: Sun, 3 Apr 2011 16:34:18 +0000 (+0300) Subject: Change item short effect format to markdown X-Git-Tag: veekun-promotions/2011041101~8^2~6 X-Git-Url: http://git.veekun.com/zzz-pokedex.git/commitdiff_plain/76c97871603ddd49759b11a74219f8252153b55d Change item short effect format to markdown --- diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index d9905b6..727582c 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -501,7 +501,7 @@ create_translation_table('item_names', Item, 'names', ) create_translation_table('item_prose', Item, 'prose', short_effect = Column(markdown.MarkdownColumn(256), nullable=False, - info=dict(description="A short summary of the effect", format='plaintext')), + info=dict(description="A short summary of the effect", format='markdown')), effect = Column(markdown.MarkdownColumn(5120), nullable=False, info=dict(description=u"Detailed description of the item's effect.", format='markdown')), )