bring back lost newline

This commit is contained in:
Valentin Gagarin
2022-09-30 01:43:57 +02:00
parent 70eea97742
commit d8bef7358f
+1 -1
View File
@@ -105,6 +105,6 @@ let
tableOfContents = let
showEntry = page:
" - [${page.command}](command-ref/new-cli/${page.name})";
in concatStringsSep "\n" (map showEntry manpages);
in concatStringsSep "\n" (map showEntry manpages) + "\n";
in (listToAttrs manpages) // { "SUMMARY.md" = tableOfContents; }