mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
feat(challenge-parser): add transcript to challenge parser (#57967)
This commit is contained in:
@@ -53,7 +53,13 @@ const processor = unified()
|
||||
.use(addScene)
|
||||
.use(addQuizzes)
|
||||
.use(addTests)
|
||||
.use(addText, ['description', 'instructions', 'notes', 'explanation']);
|
||||
.use(addText, [
|
||||
'description',
|
||||
'instructions',
|
||||
'notes',
|
||||
'explanation',
|
||||
'transcript'
|
||||
]);
|
||||
|
||||
exports.parseMD = function parseMD(filename) {
|
||||
return new Promise((resolve, reject) => {
|
||||
|
||||
Reference in New Issue
Block a user