summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xjs/test.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/test.js b/js/test.js
index 25dea86..5427bbf 100755
--- a/js/test.js
+++ b/js/test.js
@@ -30,13 +30,13 @@ fs.readFile('spec.txt', 'utf8', function(err, data) {
.replace(/^<!-- END TESTS -->(.|[\n])*/m, '');
tests.replace(/^\.\n([\s\S]*?)^\.\n([\s\S]*?)^\.$|^#{1,6} *(.*)$/gm,
- function(_,x,y,z){
- if (z) {
- current_section = z;
+ function(_,markdownSubmatch,htmlSubmatch,sectionSubmatch){
+ if (sectionSubmatch) {
+ current_section = sectionSubmatch;
} else {
example_number++;
- examples.push({markdown: x,
- html: y,
+ examples.push({markdown: markdownSubmatch,
+ html: htmlSubmatch,
section: current_section,
number: example_number});
}