Only convert markdown file from the navigation

This commit is contained in:
Samy Pessé
2014-03-31 22:54:22 -07:00
parent aefbfaf057
commit eed1dfb243
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -50,9 +50,9 @@ prog
);
})
.then(function(output) {
console.log(output);
console.log("Done!");
}, function(err) {
console.log(err.stack, err);
console.log(err.stack || err);
});
});
+3 -3
View File
@@ -71,11 +71,11 @@ var generate = function(root, output, options) {
// Copy file and replace markdown file
.then(function() {
console.log(files, summary);
return Q.all(
_.chain(files)
.map(function(file) {
if (!file) return;
var _html = file.replace(".md", ".html");
// Folder
if (file[file.length -1] == "/") {
@@ -84,8 +84,8 @@ var generate = function(root, output, options) {
);
}
// Markdown file
else if (path.extname(file) == ".md") {
// Markdown file (only from the summary)
else if (path.extname(file) == ".md" && navigation[_html] != null) {
return tpl(file, file.replace(".md", ".html"));
}