From aeb230ccb7a7e2e5f10da2a77ef5228fd5e8e9f3 Mon Sep 17 00:00:00 2001 From: jacksao Date: Sun, 15 Apr 2018 13:38:04 +0800 Subject: [PATCH] fixed(markdown): render the markdown in browser. fixes #451 closes #451 --- lib/Markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Markdown.js b/lib/Markdown.js index edc346cc..ebfbb512 100644 --- a/lib/Markdown.js +++ b/lib/Markdown.js @@ -32,7 +32,7 @@ class Markdown extends Requestable { * @return {Promise} - the promise for the http request */ render(options, cb) { - return this._request('POST', '/markdown', options, cb); + return this._request('POST', '/markdown', options, cb, true); } }