Creating one markdown file per file
See original GitHub issueI would like to generate one .md file per input file, skipping the automatic concatenation.
Something like this should work:
jsdoc2md --configure=.jsdocrc --out=dist/jsdocs/ js/**/*.js
In:
+-- js/
| +-- lib/
| +-- foo.js
| +-- a.js
| +-- b.js
Out:
+-- dist/
| +-- jsdocs/
| +-- lib/
| +-- foo.md
| +-- a.md
| +-- b.md
Issue Analytics
- State:
- Created 7 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
Getting Started | Markdown Guide
Create a Markdown file using a text editor or a dedicated Markdown application. · Open the Markdown file in a Markdown application. ·...
Read more >Markdown and including multiple files - Stack Overflow
Specifically, I want to create a separate markdown file with links that I call often but not always (call this B.md), then when...
Read more >How to create a Readme.md file? - Medium
INSTRUCTIONS · Open any text editor or notepad. · Create a new file from — →file →new file. · Save the file as...
Read more >Multi-file Documents - Marked 2
Using this feature you can build large documents/books using multiple files (e.g. a file for each chapter) and then specify the document order...
Read more >Create documents with Markdown-formatted text and Stata ...
Learn how to embed Stata output in text files, HTML files, and Word documents. We show you how to use dynamic tags to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

hi @kulakowka… i don’t plan to add this specific behaviour to the cli because it is not what the majority of users need, sorry.
well, there is an example script showing how to achieve this in jsdoc2md v1… i will write a similar example for v2 ASAP.
I’m still working on V2 - almost there, it’s at preview stage atm.