Open
Description
I have a template file .runbook-template.md
which is being shown in the summary.md after being built. However, in the index.js file for summary, I see:
// Ignore hidden files, for example `.git`
if (/^[\.]|'_book'|'node_modules'/.test(key)) {
ignores.push(key);
}
I have also tried to use the ignores
in book.json as well,
"ignores": ["runbook-template"],
Any ideas on how to have these files hidden?