(Hugo) 从 Raw GitHub 加载动态内容
(Hugo) Load dynamic Content from Raw GitHub
有没有办法从原始 GitHub 用户内容动态加载到 Hugo 中?
例如
如果回购中有一个 about.md(在其他页面中)也在静态站点中,但我宁愿没有重复,这将有助于可维护性。
查看此处描述的 base64 模板函数的示例:
https://gohugo.io/templates/functions/
{{ $resp := getJSON "https://api.github.com/repos/spf13/hugo/readme" }}
{{ $resp.content | base64Decode | markdownify }}
有没有办法从原始 GitHub 用户内容动态加载到 Hugo 中?
例如
如果回购中有一个 about.md(在其他页面中)也在静态站点中,但我宁愿没有重复,这将有助于可维护性。
查看此处描述的 base64 模板函数的示例:
https://gohugo.io/templates/functions/
{{ $resp := getJSON "https://api.github.com/repos/spf13/hugo/readme" }}
{{ $resp.content | base64Decode | markdownify }}