We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd606c commit ab847adCopy full SHA for ab847ad
1 file changed
notebookgen.js
@@ -11,6 +11,9 @@ function walk(_path, depth) {
11
var ans = "";
12
depth = Math.min(depth, section.length - 1);
13
fs.readdirSync(_path).forEach(function (file) {
14
+ if (file.startsWith(".")) {
15
+ return; // hidden directory
16
+ }
17
var f = path.resolve(_path, file);
18
var stat = fs.lstatSync(f);
19
if (stat.isDirectory())
0 commit comments