etcd-io / protodoc

protodoc generates Protocol Buffer documentation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

protodoc

Build Status Godoc

protodoc generates Protocol Buffer documentation.

go get -v -u go.etcd.io/protodoc

protodoc --directory=./parse/testdata \
	--parse="service,message" \
	--languages="Go,C++,Java,Python" \
	--title=testdata \
	--output=sample.md

# to combine multiple directories into one
protodoc --directories=./parse/testdata=service,dirA=service_message \
	--languages="Go,C++,Java,Python" \
	--title=testdata \
	--output=sample.md

Note that parser only understands the minimum syntax of Protocol Buffer (just enough to generate documentation).

For full featured parser, please check out https://github.com/golang/protobuf.

About

protodoc generates Protocol Buffer documentation.

License:Apache License 2.0


Languages

Language:Go 98.4%Language:Shell 1.6%