From: Jaroslav Kysela Date: Wed, 30 Mar 2016 11:35:17 +0000 (+0200) Subject: doc markdown: return text/markdown mime type - rfc7763 X-Git-Tag: v4.2.1~771 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f930a52835a49f7fea4df61322c73bbd02c998d3;p=thirdparty%2Ftvheadend.git doc markdown: return text/markdown mime type - rfc7763 --- diff --git a/src/webui/doc_md.c b/src/webui/doc_md.c index 803e0fd6f..169a49ef9 100644 --- a/src/webui/doc_md.c +++ b/src/webui/doc_md.c @@ -206,7 +206,7 @@ page_markdown(http_connection_t *hc, const char *remain, void *opaque) r = HTTP_STATUS_BAD_REQUEST; if (r == 0) - http_output_content(hc, "text/xml"); + http_output_content(hc, "text/markdown"); return r; }