Files
gitbook/lib/parse/lookupStructureFile.js
T
2016-05-17 12:48:03 +02:00

21 lines
592 B
JavaScript

var findParsableFile = require('./findParsableFile');
/**
Lookup a structure file (ex: SUMMARY.md, GLOSSARY.md) in a book. Uses
book's config to find it.
@param {Book} book
@param {String} type: one of ["glossary", "readme", "summary", "langs"]
@return {Promise<File>} The path of the file found, relative
to the book content root.
*/
function lookupStructureFile(book, type) {
var config = book.getConfig();
var fileToSearch = config.getValue(['structure', type]);
return findParsableFile(book, fileToSearch);
}
module.exports = lookupStructureFile;