java - Making a bitbucket source wiki from javadocs -


hi working on pretty big internal sdk use our apps. have outfitted extensive javadocs. goal somehow generate .md files these javadocs can directly put these .md files bitbucket wiki.

is there way or generate other file format bitbucket wiki can work with?

doxygen appears support javadoc-style comments , can output latex. latex can consumed pandoc, supports markdown output. roundabout, it's realistic option can see.

something following (untested)

# generate doxygen configuration file, # should enable latex output default doxygen -g  # generate latex documentation in latex/ directory doxygen  # generate 1 markdown file each latex file find latex/ -name '*.tex' -exec mkdir -p markdown/`dirname {}` && \     pandoc -o markdown/`basename {} .pdf`.md {} \; 

should close.

the alternative might take javadoc-generated html , ingest pandoc, outputting markdown.


Comments

Popular posts from this blog

user interface - How to replace the Python logo in a Tkinter-based Python GUI app? -

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -