I have cloned one of my GitHub project's wiki locally, and I want to restructure the file system. By default different pages added to the wiki are all created in the parent directory:
/wiki
home.md
wiki_page_1.md
...
I want have a directory structure similar to this:
/wiki
/setup
setup_procedures.md
index.md
/development
index.md
tools.md
/images
front_page.png
I've tried to structure my wiki files similarly, but it's not working for the .md
files. However, it works for the images folder. Is there a way to make this work?