{{/* Fetch the current version of the Pulumi CLI doc." suffix. */}} {{ $headers := dict }} {{ with (os.Getenv "GITHUB_TOKEN") }} {{ $token := printf "Bearer %s" . }} {{ $headers = (dict "Authorization" $token) }} {{ end }} {{- $json := getJSON "https://api.github.com/repos/pulumi/docs/contents/content/docs/cli/commands/pulumi.md" $headers }} {{ with $json }} {{ $content := base64Decode .content }} {{/* Remove front matter and "Auto generated by..." suffix. */}} {{- $content = replaceRE "(?s)---.*---" "" $content -}} {{- $content = replaceRE "(?m)^###### Auto generated by .*$" "" $content -}} {{- markdownify $content -}} {{ end }}