Merge pull request #140 from arthur-peka/master

Changing some variable names to improve code readability
This commit is contained in:
John MacFarlane 2014-10-24 20:46:29 -07:00
Родитель 7b95220108 3cb8720eb0
Коммит ab254b555e
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -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});
}