From e17b785a43fb9489be7df54030b1babf932e67c4 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Thu, 31 Oct 2013 09:25:24 -0700 Subject: [PATCH] whitespace --- plugins/markdown.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/markdown.js b/plugins/markdown.js index 0ec29ae52..6dcd9aa89 100644 --- a/plugins/markdown.js +++ b/plugins/markdown.js @@ -29,14 +29,16 @@ function process(doclet) { // treat '@see' specially, since we only want to process @see text that contains links (tag == 'see' && doclet[tag].indexOf('[') != -1))) { doclet[tag] = parse(doclet[tag]); - } else if (doclet[tag] instanceof Array) { - doclet[tag].forEach(function(value, index, original){ + } + else if (doclet[tag] instanceof Array) { + doclet[tag].forEach(function(value, index, original) { var inner = {}; inner[tag] = value; process(inner); original[index] = inner[tag]; }); - } else if (doclet[tag]) { + } + else if (doclet[tag]) { process(doclet[tag]); } });