From: Fletcher T. Penney Date: Sun, 2 Jul 2017 13:02:30 +0000 (-0400) Subject: CHANGED: Use 'markdown' file extension X-Git-Tag: 6.1.0^2~14^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f80acac0aa14d86c35acc1ab4f420427c9de132;p=multimarkdown CHANGED: Use 'markdown' file extension --- diff --git a/Sources/libMultiMarkdown/textbundle.c b/Sources/libMultiMarkdown/textbundle.c index 0874f3d..43f0ab8 100644 --- a/Sources/libMultiMarkdown/textbundle.c +++ b/Sources/libMultiMarkdown/textbundle.c @@ -308,7 +308,7 @@ DString * textbundle_create(const char * body, mmd_engine * e, const char * dire // Add main document len = e->dstr->currentStringLength; - status = mz_zip_writer_add_mem(&zip, "text.md", e->dstr->str, len, MZ_BEST_COMPRESSION); + status = mz_zip_writer_add_mem(&zip, "text.markdown", e->dstr->str, len, MZ_BEST_COMPRESSION); if (!status) { fprintf(stderr, "Error adding content to zip.\n"); }