https://github.com/angular/angular
Raw File
Tip revision: cc962f5b9f1e192b618225f29af81bb821012b01 authored by Emma Twersky on 10 April 2024, 02:10:07 UTC
fix(docs): formating on signals input guide
Tip revision: cc962f5
generate_org_chart.sh
#!/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
back to top