mirror of
https://github.com/wassname/talk.git
synced 2026-07-19 11:28:50 +08:00
8 lines
118 B
JavaScript
8 lines
118 B
JavaScript
const marked = require('marked');
|
|
|
|
module.exports = {
|
|
Comment: {
|
|
body: comment => marked(comment.body),
|
|
},
|
|
};
|