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-04-17 22:38:54 -07:00
|
|
|
pkgs="tests/thirdparty/packages.json"
|
|
|
|
|
docgen -pkgs "${pkgs}" -type readme -output README.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
|