Releases: rigwild/apidoc-markdown
Releases · rigwild/apidoc-markdown
v7.0.2
v7.0.1
- Upgrade dependencies
- Use pnpm
- Use
apidoc-light
instead of normal apidoc - Integrate apidoc parsing
Breaking changes
- Node.js v14+ required
- apidoc-markdown no longer uses output files from apiDoc, it does the generation directly by importing it
-p
option removed
How to upgrade
Remove apiDoc as it is now directly imported by apidoc-markdown
pnpm remove apidoc
Change your generation command. Use option --input
instead (just as you would do with apiDoc directly)
src
is where are stored your code/source files containing some apiDoc annotations
apidoc-markdown -i src -o DOCUMENTATION.md
Should be good to go ☺
v6.0.1
v6.0.0
v5.2.3
v5.2.2
v5.2.1
v5.2.0
- Upgrade dependencies
- Select a template by its name (
default
,bitbucket
) - Pass a raw plain text EJS template directly on the command line (the parser will understand your
--template
argument is a plain template if it contains an EJS open tag<%
) - Added a bitbucket-compatible template (#18)
- Fix
--createPath
which could fail when using--multi
and passing a file instead of a directory - Use EJS async template compiler
- Added lots of tests