10 lines
215 B
JavaScript
10 lines
215 B
JavaScript
const { contentAsText } = require('../helpers.js')
|
|
const marked = require('marked')
|
|
|
|
module.exports = async (...args) => {
|
|
return {
|
|
type: `Markdown`,
|
|
text: marked.parse(await contentAsText(...args))
|
|
}
|
|
}
|