Commit eda829e4 authored by Stephen Whitmore's avatar Stephen Whitmore

Adds url escaping of entries.

parent 63f5015f
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
<div class="ipfs-icon ipfs-_blank">&nbsp;</div> <div class="ipfs-icon ipfs-_blank">&nbsp;</div>
</td> </td>
<td class="padding"> <td class="padding">
<a href="{{.BackLink}}">..</a> <a href="{{.BackLink | urlEscape}}">..</a>
</td> </td>
<td></td> <td></td>
</tr> </tr>
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
<div class="ipfs-icon {{iconFromExt .Name}}">&nbsp;</div> <div class="ipfs-icon {{iconFromExt .Name}}">&nbsp;</div>
</td> </td>
<td> <td>
<a href="{{ .Path }}">{{ .Name }}</a> <a href="{{ .Path | urlEscape }}">{{ .Name }}</a>
</td> </td>
<td>{{ .Size }}</td> <td>{{ .Size }}</td>
</tr> </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