diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-08-20 10:45:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-20 10:45:28 -0400 |
commit | 8cc16bef9d4b8d7d9e36cd135fd6a78a8e8a38cf (patch) | |
tree | 6fc4734d87271916f021041a18dd975f4842b602 /src | |
parent | 0eda05963f3c70c3969ddd2aa72926b871ef4b07 (diff) | |
download | stasis-8cc16bef9d4b8d7d9e36cd135fd6a78a8e8a38cf.tar.gz |
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
Diffstat (limited to 'src')
-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); } |