We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dc1643 commit 02580a4Copy full SHA for 02580a4
lib/retro.js
@@ -46,8 +46,7 @@ function retroSection(section) {
46
var exercise = section2obj(section);
47
48
// Convert to new format
49
- var blockCode = newNode(exercise);
50
-
+ var blockCode = exerciseBlock(exercise);
51
52
return [
53
// Use a html node so it's
@@ -78,7 +77,7 @@ function retro(content) {
78
77
});
79
80
// Bring sections back together into a list of lexed nodes
81
- var newLexed = sections.join(newSections)
+ var newLexed = sections.join(newSections);
82
83
// Render back to markdown
84
return render(newLexed);
0 commit comments