2018-12-31 20:25:29 -08:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
2022-04-17 19:41:29 -07:00
|
|
|
# Generate some specific files with docgen.
|
|
|
|
|
go install ./internal/cmd/docgen
|
|
|
|
|
|
2022-05-08 16:55:51 -07:00
|
|
|
suite="tests/thirdparty/suite.json"
|
|
|
|
|
docgen -suite "${suite}" -type readme -output README.md
|
|
|
|
|
docgen -suite "${suite}" -type adopters -output doc/adopters.md
|
2022-04-17 19:41:29 -07:00
|
|
|
|
|
|
|
|
# Process simple file embeddings with embedmd.
|
2018-12-31 20:25:29 -08:00
|
|
|
find . -name '*.md' | xargs embedmd -w
|