We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent addca15 commit 9f6f3c6Copy full SHA for 9f6f3c6
src/parseTools.js
@@ -49,7 +49,8 @@ function preprocess(text) {
49
showStack.push(ident in this && this[ident] > 0);
50
}
51
} else if (line[2] == 'n') { // include
52
- ret += '\n' + read(line.substr(line.indexOf(' ')+1)) + '\n'
+ var included = read(line.substr(line.indexOf(' ')+1));
53
+ ret += '\n' + preprocess(included) + '\n'
54
55
} else if (line[2] == 'l') { // else
56
showStack.push(!showStack.pop());
0 commit comments