docs: Draft of 0.16 release notes

Also included is an enhancement to the gh shortcode to support sending commit
hashes by prepending "0x" to the hash.
This commit is contained in:
Cameron Moore
2016-03-12 00:27:34 -06:00
committed by Bjørn Erik Pedersen
parent d45b55bdd4
commit f52b040ee1
2 changed files with 64 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
{{ 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 }}