diff options
-rwxr-xr-x | build-aux/workflow/README.sh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/build-aux/workflow/README.sh b/build-aux/workflow/README.sh index 1aa2593..49b1e8d 100755 --- a/build-aux/workflow/README.sh +++ b/build-aux/workflow/README.sh @@ -13,17 +13,17 @@ done RELEASES="$(mktemp)" if [ -s "$RELEASES_LIST" ]; then - printf '# Releases\n\n' >> "$RELEASES" + printf '\n# Releases\n\n' >> "$RELEASES" cat "$RELEASES_LIST" >> "$RELEASES" fi cat README.md "$RELEASES" | \ - pandoc --toc \ - --highlight-style pygments \ - --toc-depth=2 \ - -s \ - --metadata title="$PROJECT_UC - TODOs" \ - --metadata lang=en \ - -r markdown \ - -w html \ + pandoc --toc \ + --highlight-style pygments \ + --toc-depth=2 \ + -s \ + --metadata title="$PROJECT_UC - README" \ + --metadata lang=en \ + -r markdown \ + -w html \ > public/index.html |