Files
meteor/packages/showdown/package.js
Avital Oliver 3b0dad79b0 remove unusable {{#markdown}}
it was never made to work on shark. a later
commit will re-introduce this or supply
an alternative pattern.
2013-10-28 14:19:53 -07:00

15 lines
307 B
JavaScript

// Source: https://github.com/coreyti/showdown
// XXX rename to 'markdown' and credit showdown some other way?
Package.describe({
summary: "Markdown-to-HTML processor"
});
var _ = Npm.require('underscore');
Package.on_use(function (api) {
api.add_files("showdown.js");
api.export('Showdown');
});