Suppose we have a src folder that contains multiple subfolders ( random architecture) and all the files have a .ts extension
Is it possible to generate all the .md files for those .ts only by specifying the path to a specific folder ?
For example:
src
│
└───apiWrappers
│ │
│ └───company
│ └─── companyAPIWrapper.ts
│
└───models
│ customfield
│
└───properties
| └───customFieldproperties.ts
└───model.ts
when we run the command ( if it exists)
We will have the following:
src
│
└───apiWrappers
│ │
│ └───company
│ └───companyAPIWrapper.md
│
└───models
│ customfield
│
└───properties
| └───customFieldproperties.md
└───model.md
And all the links & references will be of course made along.
Suppose we have a
srcfolder that contains multiple subfolders ( random architecture) and all the files have a.tsextensionIs it possible to generate all the
.mdfiles for those.tsonly by specifying the path to a specific folder ?For example:
when we run the command ( if it exists)
We will have the following:
And all the links & references will be of course made along.