Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
hegemonic committed Oct 31, 2013
1 parent 3c2c0e3 commit e17b785
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions plugins/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}
});
Expand Down

0 comments on commit e17b785

Please sign in to comment.