mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
19 lines
401 B
JavaScript
19 lines
401 B
JavaScript
// Source: https://github.com/coreyti/showdown
|
|
|
|
Package.describe({
|
|
summary: "Markdown-to-HTML processor",
|
|
version: "1.0.12"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.addFiles("showdown.js");
|
|
api.export('Showdown');
|
|
|
|
api.use("templating@1.3.1", "client", {weak: true});
|
|
api.addFiles('template-integration.js', 'client');
|
|
});
|
|
|
|
Package.onTest(function (api) {
|
|
api.use("blaze", "client");
|
|
});
|