From 1a5f13a230611da97fd5355a89ed299259766f27 Mon Sep 17 00:00:00 2001 From: Kai Neuwerth Date: Mon, 15 Feb 2016 22:08:23 +0100 Subject: [PATCH] Fixed issue #48 Fixed issue #48 where "Showdown" is undefined. It's now called showdown and the function "convert" is now "Convert". --- markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown.js b/markdown.js index 989a6be..148f97a 100644 --- a/markdown.js +++ b/markdown.js @@ -14,7 +14,7 @@ angular.module('btford.markdown', ['ngSanitize']). opts = newOpts; }, $get: function () { - return new Showdown.converter(opts); + return new showdown.Converter(opts); } }; }).