summaryrefslogtreecommitdiffstats
path: root/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/shortcodes/gh.html
blob: e027dc0f0ed4062cc24238d630d69171e6aa50f7 (plain)
1
2
3
4
5
6
7
8
9
{{ 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/gohugoio/hugo/commit/{{ substr . 2 }}">{{ substr . 2 6 }}</a>
	{{   else }}
	<a href="//github.com/gohugoio/hugo/issues/{{ . }}">#{{ . }}</a>
	{{ end }}
{{ end }}