aboutsummaryrefslogtreecommitdiffstats
path: root/lib/showdown/index.js
diff options
context:
space:
mode:
authorMatias Niemelä2013-04-29 15:20:10 -0400
committerIgor Minar2013-04-29 17:43:14 -0400
commitb3a62b2e19b1743df52034d4d7a0405e6a65f925 (patch)
tree5ba48fb0f0c49e56302e0ddb968d45e1046548c7 /lib/showdown/index.js
parent400f9360bb2f7553c5bd3b1f256a5f3db175b7bc (diff)
downloadangular.js-b3a62b2e19b1743df52034d4d7a0405e6a65f925.tar.bz2
feat(ngdocs): support for HTML table generation from docs code
Diffstat (limited to 'lib/showdown/index.js')
-rw-r--r--lib/showdown/index.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/showdown/index.js b/lib/showdown/index.js
deleted file mode 100644
index 370b93af..00000000
--- a/lib/showdown/index.js
+++ /dev/null
@@ -1,7 +0,0 @@
-var fs = require('fs');
-var vm = require('vm');
-
-var filename = __dirname + '/showdown-0.9.js';
-var src = fs.readFileSync(filename);
-var Showdown = vm.runInThisContext(src + '\nShowdown;', filename);
-exports.Showdown = Showdown;