angular-docs-cn/aio/scripts/contributors/generate_org_chart.sh
Alex Eagle f98093a30d docs(aio): add missing mentors for collaborators (#29142)
Also improve the presentation of the org chart

PR Close #29142
2019-04-11 08:06:18 -07:00

8 lines
240 B
Bash
Executable File

#!/usr/bin/env bash
(
cd $(dirname $0)
echo "digraph {"
echo "rankdir=RL; splines=ortho; node [shape=box];"
jq -f org_chart.jq --raw-output < ../../content/marketing/contributors.json
echo "}"
) | dot -Tpng > org.png