fix: External links ending in .md don't get trimmed (#236)
Co-authored-by: SAF <saf@saf.saf> fixes https://github.com/jackyzha0/quartz/issues/229
This commit is contained in:
		
							parent
							
								
									d80f6946c8
								
							
						
					
					
						commit
						f08a76a738
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -1,9 +1,9 @@
 | 
				
			||||||
{{$trimmed := strings.TrimSuffix ".md" (.Destination | safeURL)}}
 | 
					{{$dashedurl := replace .Destination "%20" "-" }}
 | 
				
			||||||
{{$dashedurl := replace $trimmed "%20" "-" }}
 | 
					 | 
				
			||||||
{{$external := strings.HasPrefix $dashedurl "http" }}
 | 
					{{$external := strings.HasPrefix $dashedurl "http" }}
 | 
				
			||||||
{{- if $external -}}
 | 
					{{- if $external -}}
 | 
				
			||||||
<a href="{{ $dashedurl }}" rel="noopener">{{ .Text | safeHTML }}</a>
 | 
					<a href="{{ $dashedurl }}" rel="noopener">{{ .Text | safeHTML }}</a>
 | 
				
			||||||
{{- else -}}
 | 
					{{- else -}}
 | 
				
			||||||
 | 
					{{$trimmed := strings.TrimSuffix ".md" (.Destination | safeURL)}}
 | 
				
			||||||
{{$spacedurl := replace $trimmed "%20" " " }}
 | 
					{{$spacedurl := replace $trimmed "%20" " " }}
 | 
				
			||||||
{{$fixedUrl := (cond (hasPrefix $spacedurl "/") $spacedurl (print "/" $spacedurl)) | urlize}}
 | 
					{{$fixedUrl := (cond (hasPrefix $spacedurl "/") $spacedurl (print "/" $spacedurl)) | urlize}}
 | 
				
			||||||
{{$nonexistent := eq (.Page.GetPage $spacedurl).RelPermalink ""}}
 | 
					{{$nonexistent := eq (.Page.GetPage $spacedurl).RelPermalink ""}}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue