night0721.xyz/layouts/shortcodes/getreadme.html

19 lines
508 B
HTML
Raw Normal View History

2024-03-14 01:45:09 +01:00
{{ $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 }}
<div class="readme-content">
{{ $markdown | safeHTML }}
</div>
{{ else }}
<p>Error fetching README from GitHub.</p>
{{ end }}
{{ else }}
<p>Error fetching data from GitHub API.</p>
{{ end }}