diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 09:08:11 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 09:08:11 -0400 |
commit | f2e7ea39ac3467ee1bf5631bea53799e17062753 (patch) | |
tree | 949b579a91354893c702c29bf1f7e335c7edc116 | |
parent | 2859c874129a7868d418d0e2d4f1347d5eaff3b8 (diff) | |
download | stasis-update-mission-configs.tar.gz |
Pandoc now uses --standaloneupdate-mission-configs
-rw-r--r-- | src/stasis_indexer.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |