Commit 27a7bf85 authored by Stephen Whitmore's avatar Stephen Whitmore

Merge pull request #9 from noffle/master

adds url escaping of entries
parents 63f5015f eda829e4
......@@ -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