You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			7 lines
		
	
	
		
			363 B
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			7 lines
		
	
	
		
			363 B
		
	
	
	
		
			HTML
		
	
{{$trimmed := strings.TrimSuffix ".md" (.Destination | safeURL)}}
 | 
						|
{{$external := strings.HasPrefix $trimmed "http" }}
 | 
						|
{{ if $external }}
 | 
						|
<a href="{{ $trimmed }}" rel="noopener">{{ .Text | safeHTML }}</a>
 | 
						|
{{else}}
 | 
						|
<a href="{{ if (hasPrefix $trimmed "/") }}{{ $trimmed }}{{ else }}{{ print "/" $trimmed }}{{ end }}" rel="noopener">{{ .Text | safeHTML }}</a>
 | 
						|
{{end}} |