Files
meteor/packages/markdown/package.js
David Greenspan 8f707caad9 Rename “showdown” to “markdown”
If we want to change markdown implementations in the future, we’ll bump the major version of the package.
2014-09-25 13:54:52 -07:00

19 lines
398 B
JavaScript

// Source: https://github.com/coreyti/showdown
Package.describe({
summary: "Markdown-to-HTML processor",
version: "1.0.1"
});
Package.on_use(function (api) {
api.add_files("showdown.js");
api.export('Showdown');
api.use("templating", "client", {weak: true});
api.add_files('template-integration.js', 'client');
});
Package.on_test(function (api) {
api.use("blaze", "client");
});