summaryrefslogtreecommitdiffstats
path: root/docs/layouts/shortcodes
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2015-12-02 13:11:24 -0700
committerAnthony Fok <foka@debian.org>2015-12-02 13:11:24 -0700
commitf363faadabe41fca0ebc3edffecc58368e6e384d (patch)
tree5c379ee44185a87092c4739dc400ce197a33d060 /docs/layouts/shortcodes
parent6812229bb8c09675b86b26c0338a3dc5cc5498b1 (diff)
Add a number sign "#" before a GitHub issue number
to make it more readily recognizable.
Diffstat (limited to 'docs/layouts/shortcodes')
-rw-r--r--docs/layouts/shortcodes/gh.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/layouts/shortcodes/gh.html b/docs/layouts/shortcodes/gh.html
index 78369df58..0d3022e71 100644
--- a/docs/layouts/shortcodes/gh.html
+++ b/docs/layouts/shortcodes/gh.html
@@ -2,6 +2,6 @@
{{ if eq (substr . 0 1) "@" }}
<a href="//github.com/{{ substr . 1 }}">{{ . }}</a>
{{ else }}
-<a href="//github.com/spf13/hugo/issues/{{ . }}">{{ . }}</a>
+<a href="//github.com/spf13/hugo/issues/{{ . }}">#{{ . }}</a>
{{ end }}
{{ end }}