From 5f283cc045202a208f4b38ff9d8c2ccfceb816df Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Fri, 9 Oct 2015 20:47:15 -0500 Subject: [PATCH] fix(docs): don't filter out api index page --- scripts/docs/processors/jekyll.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docs/processors/jekyll.js b/scripts/docs/processors/jekyll.js index f1006cc0a1..d32357cda0 100644 --- a/scripts/docs/processors/jekyll.js +++ b/scripts/docs/processors/jekyll.js @@ -9,7 +9,7 @@ module.exports = function jekyll(renderDocsProcessor) { // pretty up and sort the docs object for menu generation docs = docs.filter(function(doc) { - return !!doc.name && !!doc.outputPath; + return (!!doc.name && !!doc.outputPath) || doc.docType === 'index-page'; }); docs.sort(function(a, b) { textA = a.name ? a.name.toUpperCase() : '';