diff options
author | default <nobody@localhost> | 2023-05-21 20:32:23 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-05-21 20:32:23 +0200 |
commit | 49362f54049a357e52cd6c57d2aa20d33add3307 (patch) | |
tree | 0417bac6b8157ce7be07be86b7eb6915bb24cdf7 /main.c | |
parent | 3cd73311bece7783bbcc3774f5fd54c520eb88ed (diff) |
Convert image links in notes to attachments.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,7 +87,7 @@ int main(int argc, char *argv[]) if (strcmp(cmd, "markdown") == 0) { /* undocumented, for testing only */ xs *c = xs_readall(stdin); - xs *fc = not_really_markdown(c); + xs *fc = not_really_markdown(c, NULL); printf("<html>\n%s\n</html>\n", fc); return 0; |