Commit eda829e4 authored by Stephen Whitmore's avatar Stephen Whitmore

Adds url escaping of entries.

parent 63f5015f
......@@ -38,7 +38,7 @@
<div class="ipfs-icon ipfs-_blank">&nbsp;</div>
</td>
<td class="padding">
<a href="{{.BackLink}}">..</a>
<a href="{{.BackLink | urlEscape}}">..</a>
</td>
<td></td>
</tr>
......@@ -48,7 +48,7 @@
<div class="ipfs-icon {{iconFromExt .Name}}">&nbsp;</div>
</td>
<td>
<a href="{{ .Path }}">{{ .Name }}</a>
<a href="{{ .Path | urlEscape }}">{{ .Name }}</a>
</td>
<td>{{ .Size }}</td>
</tr>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment