Navigation Menu

Skip to content

Commit

Permalink
Store the path as an array
Browse files Browse the repository at this point in the history
  • Loading branch information
darashi committed Aug 14, 2012
1 parent b028ced commit cd509fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/convert.js
Expand Up @@ -41,7 +41,9 @@ function parse(doc, context) {
item.title = context.title;
item.path = context.path.map(function(item) {
return item.title;
}).join(' \xbb ');
}).filter(function(title) {
return title;
});
context.items.push(item);
}

Expand Down

0 comments on commit cd509fa

Please sign in to comment.