documentation - Is it possible to generate static HTML document from Dart source code? -
i know docgen
outputs documentation in either json / yaml , can use --serve
flag download , run web viewer documentation.
but there way convert documentation static html files? if there isn't built in way this, there maybe third party tool suggestion accomplishes this?
to view doc locally have use docgen --serve .
to deploy documentation web, following:
docgen --compile .
- copy output available in
dartdoc-viewer/client/out/web/
on web server.
Comments
Post a Comment