Skip to content

Commit 5934f63

Browse files
committed
Prettier
1 parent 5869b5d commit 5934f63

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

support/src/documentationHelpers/generateLearningGoals.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ function extractLearningGoals(content: string): {
2424
readonly found: boolean;
2525
readonly goals: readonly string[];
2626
} {
27-
const sectionRegex = /#+\s*(?:Module\s+)?Learning goals\s*\n([\s\S]*?)(?=\n#+\s|$)/i;
27+
const sectionRegex =
28+
/#+\s*(?:Module\s+)?Learning goals\s*\n([\s\S]*?)(?=\n#+\s|$)/i;
2829
const match = content.match(sectionRegex);
2930

3031
if (!match) return { found: false, goals: [] };

0 commit comments

Comments
 (0)