Table of contents
No headers
/***
MindTouch
Copyright (c) MindTouch Inc.
http://mindtouch.com
This file and accompanying files are licensed under the
MindTouch Master Subscription Agreement (MSA).
A complete copy of the MSA is available at http://www.mindtouch.com/msa
***/
var filter = [];
var articleType = page.article;
if(site.idf.version === 'IDF3') {
if(articleType === 'topic-guide'){
filter = [
'MindTouch/IDF3/Pages/How-To',
'MindTouch/IDF3/Pages/Reference',
'MindTouch/IDF3/Pages/Topic'
];
} else if(articleType === 'topic-category'){
filter = [
'MindTouch/IDF3/Pages/Guide'
];
} else if(articleType === 'topic-portfolio'){
filter = [
'MindTouch/IDF3/Pages/Portfolio',
'MindTouch/IDF3/Pages/Category'
];
}
}
export = filter;
Comments