Browse code

Pad around table in plugin list

Make sure the table is separated out from header and footer content so
it actually gets picked up as a table.

Change-Id: I60a24b2476a55cfbf5c864a1c27ce5b98e699886

Ian Wienand authored on 2016/04/06 08:27:56
Showing 1 changed files
... ...
@@ -68,6 +68,7 @@ name_col_len=$(( name_col_len + 2 ))
68 68
 # foobar                 `git://... <http://...>`__
69 69
 # ...
70 70
 
71
+printf "\n\n"
71 72
 title_underline ${name_col_len}
72 73
 printf "%-${name_col_len}s %s\n" "Plugin Name" "URL"
73 74
 title_underline ${name_col_len}
... ...
@@ -77,6 +78,7 @@ for plugin in ${sorted_plugins}; do
77 77
     gitlink="https://git.openstack.org/cgit/openstack/${plugin}"
78 78
     printf "%-${name_col_len}s %s\n" "${plugin}" "\`${giturl} <${gitlink}>\`__"
79 79
 done
80
+printf "\n\n"
80 81
 
81 82
 if [[ -r data/devstack-plugins-registry.footer ]]; then
82 83
     cat data/devstack-plugins-registry.footer