1
0
mirror of https://github.com/golang/go synced 2024-11-19 10:24:43 -07:00
go/lib/godoc/codewalkdir.html
Robert Griesemer 91fadbca17 godoc: fix escaping in templates
- HTML-escape URL paths
- URL-escape URL parameters

R=bradfitz
CC=golang-dev
https://golang.org/cl/4890041
2011-08-15 15:15:54 -07:00

17 lines
349 B
HTML

<!--
Copyright 2010 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<table class="layout">
{{range .}}
<tr>
{{$name := html .Name}}
<td><a href="{{$name}}">{{$name}}</a></td>
<td width="25">&nbsp;</td>
<td>{{html .Title}}</td>
</tr>
{{end}}
</table>