If there's a directory that the user does not want MarkBind to traverse during the page rendering, he must modify the glob's regex to specifically exclude such directories. For example:
"**/index.md" --> "{,!(book)/**/}index.md"
to exclude index.md files residing in book directories.
I suggest that we provide a user an alternative way to ignore entire directories directly with an "ignore" parameter for "pages":
"pages": [
{
"glob": "**/index.md"
},
{
"ignore": "book/"
},
If there's a directory that the user does not want MarkBind to traverse during the page rendering, he must modify the glob's regex to specifically exclude such directories. For example:
"**/index.md"-->"{,!(book)/**/}index.md"to exclude
index.mdfiles residing inbookdirectories.I suggest that we provide a user an alternative way to ignore entire directories directly with an
"ignore"parameter for"pages":