vscode-file-tree-to-text-generator icon indicating copy to clipboard operation
vscode-file-tree-to-text-generator copied to clipboard

Markdown - Incorrect link to files or directories

Open oviniciusfeitosa opened this issue 2 years ago • 0 comments

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?

oviniciusfeitosa avatar Sep 19 '23 18:09 oviniciusfeitosa