mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
it was never made to work on shark. a later commit will re-introduce this or supply an alternative pattern.
15 lines
307 B
JavaScript
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');
|
|
});
|