A super intuitive doc generator from Markdown files
npm -g i documentoror for yarn users: yarn global add documentor
documentor init # initialisation of the documentationdocumentor ./docs-folder -o output.html # render the documentation to output.htmlPlease check the documentation for more details.
-i,--input: Input folder (optional flag)-o,--output: Write in file-t,--to: Output format-c,--config: Configuration file-w,--watch: Watch docs files with partial generation-q,--quite: Do not output any message-v,--verbose: Increase the verbosity--var,--variable: Set or override config variable(s)-h,--help: Show help
Generate project.html from ./docs folder
documentor ./docs -o out.htmlOutput html to STDOUT from ./docs folder and read the configuration file conf.yml
documentor docs -c conf.ymlGenerate "out.html" with a custom name and footer
documentor ./docs -o out.html --var.name "My Project" --var.footer "(c) Project 1.0"Watch the "docs" folder and regenerate "out.html" on change
documentor docs -o out.html -wnpm iYou can run the CLI version with node bin/documentor.js, for example node bin/documentor.js ./docs -o out.html.
npm test- Embed images from markdown
- Add processing indicator


