summaryrefslogtreecommitdiff
path: root/lib/godoc/example.html
blob: ede31d61f9b48be02632c54034b98c4e014eb286 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div id="example_{{.Name}}" class="toggle">
	<div class="collapsed">
		<p class="exampleHeading toggleButton"><span class="text">Example{{example_suffix .Name}}</span></p>
	</div>
	<div class="expanded">
		<p class="exampleHeading toggleButton"><span class="text">Example{{example_suffix .Name}}</span></p>
		{{with .Doc}}<p>{{html .}}</p>{{end}}
		<p>Code:</p>
		<pre class="code">{{.Code}}</pre>
		{{with .Output}}
		<p>Output:</p>
		<pre class="output">{{html .}}</pre>
		{{end}}
	</div>
</div>