We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe related to #40 but regardless, I want to read path/to/foo.js and have it output into a file README.md.
path/to/foo.js
README.md
The text was updated successfully, but these errors were encountered:
+1 for having more granular control.
Throwing some ideas out there for possible implementations:
--output
jsdox file.js -o readme.md
jsdox src/ -o docs/
jsdox file1.js -o docs/
docs/file1.md
cat file1.js | jsdox -X > readme.md
-X
Sorry, something went wrong.
sounds good to me.
In the first case, only missing case is jsdox file.js -o readme.md, the other 2 should already work today.
Successfully merging a pull request may close this issue.
Maybe related to #40 but regardless, I want to read
path/to/foo.js
and have it output into a fileREADME.md
.The text was updated successfully, but these errors were encountered: