summaryrefslogtreecommitdiffstats
path: root/docs/layouts/shortcodes/gh.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/layouts/shortcodes/gh.html')
-rw-r--r--docs/layouts/shortcodes/gh.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/layouts/shortcodes/gh.html b/docs/layouts/shortcodes/gh.html
new file mode 100644
index 000000000..78369df58
--- /dev/null
+++ b/docs/layouts/shortcodes/gh.html
@@ -0,0 +1,7 @@
+{{ range .Params }}
+{{ if eq (substr . 0 1) "@" }}
+<a href="//github.com/{{ substr . 1 }}">{{ . }}</a>
+{{ else }}
+<a href="//github.com/spf13/hugo/issues/{{ . }}">{{ . }}</a>
+{{ end }}
+{{ end }}