You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
The text was updated successfully, but these errors were encountered:
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.js
line 32:The text was updated successfully, but these errors were encountered: