projects
/
zzz-pokedex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe7fe27
)
Change item short effect format to markdown
author
Petr Viktorin
<encukou@gmail.com>
Sun, 3 Apr 2011 16:34:18 +0000
(19:34 +0300)
committer
Petr Viktorin
<encukou@gmail.com>
Sun, 3 Apr 2011 16:34:18 +0000
(19:34 +0300)
pokedex/db/tables.py
patch
|
blob
|
history
diff --git
a/pokedex/db/tables.py
b/pokedex/db/tables.py
index
d9905b6
..
727582c
100644
(file)
--- 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')),
)