mirror of
https://github.com/gohugoio/hugo.git
synced 2025-03-23 08:23:35 +00:00
Add a number sign "#" before a GitHub issue number
to make it more readily recognizable.
This commit is contained in:
parent
6812229bb8
commit
f363faadab
2 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ many users to contribute. This release represents over **377 contributions by
|
||||||
87 contributors** to the main Hugo repo and hundreds of improvements to the
|
87 contributors** to the main Hugo repo and hundreds of improvements to the
|
||||||
libraries Hugo uses. Hugo also launched a [new theme
|
libraries Hugo uses. Hugo also launched a [new theme
|
||||||
showcase](http://themes.gohugo.io) and participated in
|
showcase](http://themes.gohugo.io) and participated in
|
||||||
[hacktoberfest](https://hacktoberfest.digitalocean.com).
|
[Hacktoberfest](https://hacktoberfest.digitalocean.com).
|
||||||
|
|
||||||
Hugo now has:
|
Hugo now has:
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
{{ if eq (substr . 0 1) "@" }}
|
{{ if eq (substr . 0 1) "@" }}
|
||||||
<a href="//github.com/{{ substr . 1 }}">{{ . }}</a>
|
<a href="//github.com/{{ substr . 1 }}">{{ . }}</a>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<a href="//github.com/spf13/hugo/issues/{{ . }}">{{ . }}</a>
|
<a href="//github.com/spf13/hugo/issues/{{ . }}">#{{ . }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue