From 17e450131cc5f6508bea99172b6200bd6fce5584 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Wed, 6 Apr 2016 09:27:56 +1000 Subject: [PATCH] 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 --- tools/generate-devstack-plugins-list.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/generate-devstack-plugins-list.sh b/tools/generate-devstack-plugins-list.sh index c3c8f24dbd..ea30cd5568 100644 --- a/tools/generate-devstack-plugins-list.sh +++ b/tools/generate-devstack-plugins-list.sh @@ -68,6 +68,7 @@ name_col_len=$(( name_col_len + 2 )) # foobar `git://... `__ # ... +printf "\n\n" title_underline ${name_col_len} printf "%-${name_col_len}s %s\n" "Plugin Name" "URL" title_underline ${name_col_len} @@ -77,6 +78,7 @@ for plugin in ${sorted_plugins}; do gitlink="https://git.openstack.org/cgit/openstack/${plugin}" printf "%-${name_col_len}s %s\n" "${plugin}" "\`${giturl} <${gitlink}>\`__" done +printf "\n\n" if [[ -r data/devstack-plugins-registry.footer ]]; then cat data/devstack-plugins-registry.footer