HI,
I wanted to suggest a change to the notebook-generator to be able to exclude files. The way that it can be done is by adding an _ symbol to the file name. For example:
Sample.cpp: This file is included
_Sample.cpp: This file should be excluded
It can be sone simply by adding the following line to notebookgen.js line 32:
if (path.basename(f).startsWith("_")) return;
HI,
I wanted to suggest a change to the notebook-generator to be able to exclude files. The way that it can be done is by adding an
_symbol to the file name. For example:Sample.cpp: This file is included_Sample.cpp: This file should be excludedIt can be sone simply by adding the following line to
notebookgen.jsline 32: