summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorGravatar default2022-11-13 08:41:50 +0100
committerGravatar default2022-11-13 08:41:50 +0100
commit73323a7fc0bf29b0409a34bafc728374fd58bb7a (patch)
tree6db6b653e29d6e8e1fcf1b959926818e6b54a9d3 /main.c
parentUpdated TODO. (diff)
downloadsnac2-73323a7fc0bf29b0409a34bafc728374fd58bb7a.tar.gz
snac2-73323a7fc0bf29b0409a34bafc728374fd58bb7a.tar.xz
snac2-73323a7fc0bf29b0409a34bafc728374fd58bb7a.zip
Some formatting refactoring.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 4c4df43..befbd32 100644
--- a/main.c
+++ b/main.c
@@ -79,7 +79,7 @@ int main(int argc, char *argv[])
79 if (strcmp(cmd, "markdown") == 0) { 79 if (strcmp(cmd, "markdown") == 0) {
80 /* undocumented, for testing only */ 80 /* undocumented, for testing only */
81 xs *c = xs_readall(stdin); 81 xs *c = xs_readall(stdin);
82 xs *fc = not_really_markdown(c, &fc); 82 xs *fc = not_really_markdown(c);
83 83
84 printf("<html>\n%s\n</html>\n", fc); 84 printf("<html>\n%s\n</html>\n", fc);
85 return 0; 85 return 0;