mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Change item short effects to markdown.
This commit is contained in:
parent
721b07084f
commit
629d99885c
1 changed files with 1 additions and 1 deletions
|
@ -500,7 +500,7 @@ create_translation_table('item_names', Item, 'names',
|
|||
info=dict(description="The name", format='plaintext', official=True, ripped=True)),
|
||||
)
|
||||
create_translation_table('item_prose', Item, 'prose',
|
||||
short_effect = Column(Unicode(256), nullable=False,
|
||||
short_effect = Column(markdown.MarkdownColumn(256), nullable=False,
|
||||
info=dict(description="A short summary of the effect", format='plaintext')),
|
||||
effect = Column(markdown.MarkdownColumn(5120), nullable=False,
|
||||
info=dict(description=u"Detailed description of the item's effect.", format='markdown')),
|
||||
|
|
Loading…
Reference in a new issue