Files
go-rst/Makefile

16 lines
391 B
Makefile
Raw Normal View History

2024-11-01 22:20:54 -04:00
docs: format
find pkg -type d -exec bash -c "ls {}/*.go && godocdown -o ./{}/doc.md ./{}" \;
format:
2025-01-30 17:53:56 -05:00
find . -name '*.go' -exec gofumpt -w -s -extra {} \;
build:
go build -o go-rst .
test: build
./go-rst -rst example/doc.rst -out example/example.html
./go-rst -rst example/complexDoc.rst -out example/complexExample.html
2025-01-30 18:36:09 -05:00
./go-rst -rst example/rstSpec.rst -out example/rstSpec.html