{{ $repo := .Get "repo" }} {{ $url := printf "https://api.github.com/repos/night0721/%s/contents/README.md" $repo }} {{ $response := getJSON $url }} {{ with $response }} {{ if isset . "content" }} {{ $content := .content | base64Decode }} {{ $markdown := $content | markdownify }}
{{ $markdown | safeHTML }}
{{ else }}

Error fetching README from GitHub.

{{ end }} {{ else }}

Error fetching data from GitHub API.

{{ end }}