Skip to content

Commit

Permalink
Fix schema tables
Browse files Browse the repository at this point in the history
  • Loading branch information
jvatic committed Sep 22, 2013
1 parent 44c677f commit f32fefb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tent_doc/schema_table/table.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def property_rows(name, attrs)
main_row = el('tr')
main_row << el('td', el('code', name))
main_row << el('td', required_to_s(attrs['required']))
main_row << el('td', required_to_s(attrs['app_required'])) if attrs['post']
main_row << el('td', required_to_s(attrs['app_required'])) if post_schema?
main_row << el('td', type)
main_row << el('td', attrs['description'].gsub(/`([^`]+?)`/, '<code>\1</code>'))

Expand Down

0 comments on commit f32fefb

Please sign in to comment.