mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-29 10:08:13 +00:00
12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
({
|
|
// Please visit the URL below for more information:
|
|
// https://shd101wyy.github.io/markdown-preview-enhanced/#/extend-parser
|
|
|
|
onWillParseMarkdown: async function(markdown) {
|
|
return markdown;
|
|
},
|
|
|
|
onDidParseMarkdown: async function(html) {
|
|
return html;
|
|
},
|
|
}) |