From 8cc16bef9d4b8d7d9e36cd135fd6a78a8e8a38cf Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 20 Aug 2024 10:45:28 -0400 Subject: Update mission configs (#34) * Clean package caches (saves about 1GB of layer-space) * Update installation instructions * Update layout * Use template variables where appropriate * Instructions now provide release notes in one place * Pandoc now uses --standalone --- src/stasis_indexer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/stasis_indexer.c b/src/stasis_indexer.c index 7786b4d..2a3c044 100644 --- a/src/stasis_indexer.c +++ b/src/stasis_indexer.c @@ -269,10 +269,10 @@ int indexer_make_website(struct Delivery *ctx) { // Converts a markdown file to html strcpy(cmd, "pandoc "); - strcat(cmd, fullpath_src); - strcat(cmd, " "); + strcat(cmd, "--standalone "); strcat(cmd, "-o "); strcat(cmd, fullpath_dest); + strcat(cmd, fullpath_src); if (globals.verbose) { puts(cmd); } -- cgit