markdownToHtml.js 249 B

123456789101112
  1. const hubdown = require("hubdown");
  2. module.exports = function(config, item) {
  3. return new Promise(function(resolve) {
  4. hubdown(item.content).then(doc => {
  5. resolve({
  6. ...item,
  7. content: doc.content
  8. });
  9. });
  10. });
  11. };