generate markdown from javadoc

Former-commit-id: 6e92fcc976
Former-commit-id: 6f45949e3aa692eaad28129f20c782c7b65cd6bc
This commit is contained in:
idk
2022-08-08 13:17:25 -04:00
parent 3d7c0a2ab2
commit 75846f7567
10 changed files with 1070 additions and 1 deletions

10
javadoc.sh Executable file
View File

@ -0,0 +1,10 @@
#! /usr/bin/env bash
ant distclean
rm -rf docs
~/.cargo/bin/lojidoc src/java/net/i2p/i2pfirefox/ -s -l > report.log
~/.cargo/bin/lojidoc -c src/java/net/i2p/i2pfirefox/ -s
mv -v generated/net/i2p/i2pfirefox/*.md .
rm -rf generated
git add ./*.md