shithub: hugo

ref: 799c654b0d39ec869c2da24d41de3636eb7157f0
dir: /docs/layouts/shortcodes/gh.html/

View raw version
{{ range .Params }}
	{{   if eq (substr . 0 1) "@" }}
	<a href="//github.com/{{ substr . 1 }}">{{ . }}</a>
	{{   else if eq (substr . 0 2) "0x" }}
	<a href="//github.com/spf13/hugo/commit/{{ substr . 2 }}">{{ substr . 2 6 }}</a>
	{{   else }}
	<a href="//github.com/spf13/hugo/issues/{{ . }}">#{{ . }}</a>
	{{ end }}
{{ end }}