vscode-file-tree-to-text-generator
vscode-file-tree-to-text-generator copied to clipboard
Markdown - Incorrect link to files or directories
Hello! Firstly, congratulations on the project and initiative. When generating Markdown as output for the root directory, I noticed that the link to files and directories, the project directory, is being added, instead of adding the path to the folders.
Below is an example of the current output:
* [dev/](./projects.ideas/dev)
* [frontend/](./projects.ideas/dev/frontend)
* [libs/](./projects.ideas/dev/frontend/libs)
* [redux/](./projects.ideas/dev/frontend/libs/redux)
* [Questions.md](./projects.ideas/dev/frontend/libs/redux/Questions.md)
* [Readme.md](./projects.ideas/dev/frontend/libs/redux/Readme.md)
This would be an example of the expected output:
* [dev/](./dev)
* [frontend/](./dev/frontend)
* [libs/](./dev/frontend/libs)
* [redux/](./dev/frontend/libs/redux)
* [Questions.md](./dev/frontend/libs/redux/Questions.md)
* [Readme.md](./dev/frontend/libs/redux/Readme.md)
I'm using VSCode, a Debian-based Linux distribution.
Could you check this problem?