diff options
author | default <nobody@localhost> | 2024-03-25 16:15:09 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-03-25 16:15:09 +0100 |
commit | adf0a13992edb85738ac983a872937a805629474 (patch) | |
tree | 31e084c9ff92a82e2083e8225e703bceeec56981 /main.c | |
parent | bc752b7d67d834455eae9eacec16e28585c79c5f (diff) |
If an emoji in emojis.json is an URL to an image, it's stored in the tag list.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -98,7 +98,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, NULL); + xs *fc = not_really_markdown(c, NULL, NULL); printf("<html>\n%s\n</html>\n", fc); return 0; |