feat(challenge-parser): add transcript to challenge parser (#57967)

This commit is contained in:
Tom
2025-01-09 00:17:22 -06:00
committed by GitHub
parent 8143bbbae1
commit 8ec9e5cc52
8 changed files with 74 additions and 16 deletions
+7 -1
View File
@@ -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) => {