mirror of
				https://github.com/falsycat/ar.falsy.cat.git
				synced 2025-10-31 05:38:20 +00:00 
			
		
		
		
	remove unnecessary regex, use encodeuri for label instead of replace
This commit is contained in:
		| @@ -1,4 +1,5 @@ | ||||
| {{$trimmed := strings.TrimSuffix ".md" (.Destination | safeURL)}} | ||||
| {{$trimmed = replace $trimmed "%20" "-"}} | ||||
| {{$external := strings.HasPrefix $trimmed "http" }} | ||||
| {{ if $external }} | ||||
| <a href="{{ $trimmed }}" rel="noopener">{{ .Text | safeHTML }}</a> | ||||
|   | ||||
| @@ -1,6 +1,3 @@ | ||||
| {{$content := replaceRE `a href="\.\.\/(.+%20.+)+"` `$1` .Content}} | ||||
| {{$content = replace $content "%20" "-"}} | ||||
| {{$content = $content | safeHTML}} | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| {{ partial "head.html" . }} | ||||
| @@ -22,7 +19,7 @@ | ||||
|             {{ .TableOfContents }} | ||||
|         </aside> | ||||
|         {{end}} | ||||
|         {{- $content -}} | ||||
|         {{.Content}} | ||||
|     </article> | ||||
|     {{partial "footer.html" .}} | ||||
| </div> | ||||
|   | ||||
| @@ -1,6 +1,3 @@ | ||||
| {{$content := replaceRE `a href="\.\.\/(.+%20.+)+"` `$1` .Content}} | ||||
| {{$content = replace $content "%20" "-"}} | ||||
| {{$content = $content | safeHTML}} | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| {{ partial "head.html" . }} | ||||
| @@ -22,7 +19,7 @@ | ||||
|             {{ .TableOfContents }} | ||||
|         </aside> | ||||
|         {{end}} | ||||
|         {{- $content -}} | ||||
|         {{- .Content -}} | ||||
|     </article> | ||||
|     {{partial "footer.html" .}} | ||||
| </div> | ||||
|   | ||||
| @@ -10,7 +10,7 @@ | ||||
|         {{$src = replace $src " " "-"}} | ||||
|  | ||||
|         <li> | ||||
|             <a href="{{$src | safeHTML}}">{{index . "source"}}</a> | ||||
|             <a href="{{$src}}">{{index . "source"}}</a> | ||||
|         </li> | ||||
|     {{- end -}} | ||||
|     {{else}} | ||||
|   | ||||
| @@ -184,7 +184,7 @@ | ||||
|   const labels = graphNode.append("text") | ||||
|     .attr("dx", 12) | ||||
|     .attr("dy", ".35em") | ||||
|     .text((d) => d.id.replace("%20", " ")) | ||||
|     .text((d) => encodeURI(d.id)) | ||||
|     .style("opacity", 0) | ||||
|     .style("pointer-events", "none") | ||||
|     .call(drag(simulation)); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user