mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	Also included is an enhancement to the gh shortcode to support sending commit hashes by prepending "0x" to the hash.
		
			
				
	
	
		
			10 lines
		
	
	
		
			322 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			322 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ 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 }}
 | 
						|
{{ end }}
 |