diff --git a/plugins/test/specs/markdown.js b/plugins/test/specs/markdown.js index 382c0d50..c7c6db8e 100644 --- a/plugins/test/specs/markdown.js +++ b/plugins/test/specs/markdown.js @@ -1,22 +1,3 @@ -/** - @overview Translate doclet descriptions from MarkDown into HTML. - @module plugins/markdown - @author Michael Mathews - */ - -var mdParser = require('evilstreak/markdown'); - -exports.handlers = { - /** - Translate markdown syntax in a new doclet's description into HTML. Is run - by JSDoc 3 whenever a "newDoclet" event fires. - */ - newDoclet: function(e) { - if (e.doclet.description) { - e.doclet.description = mdParser.toHTML(e.doclet.description) - .replace( /&/g, "&" ) // because markdown escapes these - .replace( /</g, "<" ) - .replace( />/g, ">" ); - } - } -}; \ No newline at end of file +describe("markdown plugin", function() { + // TODO +}); \ No newline at end of file