Skip to content

Commit e08209d

Browse files
internal/godoc/dochtml: omit "Output" section for examples with no output
Fixes golang/go#60986
1 parent a9d9eed commit e08209d

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

internal/godoc/dochtml/dochtml_test.go

+26
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,32 @@ func main() {
178178
0
179179
1
180180
</span></pre>
181+
</div>
182+
<div class="Documentation-exampleButtonsContainer">
183+
<p class="Documentation-exampleError" role="alert" aria-atomic="true"></p>
184+
<button class="Documentation-exampleShareButton" aria-label="Share Code">Share</button>
185+
<button class="Documentation-exampleFormatButton" aria-label="Format Code">Format</button>
186+
<button class="Documentation-exampleRunButton" aria-label="Run Code">Run</button>
187+
</div></details>`,
188+
},
189+
{
190+
name: "Example without output",
191+
htmlID: "example-package-NoOutput",
192+
want: `<details tabindex="-1" id="example-package-NoOutput" class="Documentation-exampleDetails js-exampleContainer">
193+
<summary class="Documentation-exampleDetailsHeader">Example (NoOutput) <a href="#example-package-NoOutput">¶</a></summary>
194+
<div class="Documentation-exampleDetailsBody">
195+
196+
<pre class="Documentation-exampleCode">package main
197+
198+
import (
199+
&#34;fmt&#34;
200+
)
201+
202+
func main() {
203+
fmt.Println(&#34;hello&#34;)
204+
}
205+
</pre>
206+
181207
</div>
182208
<div class="Documentation-exampleButtonsContainer">
183209
<p class="Documentation-exampleError" role="alert" aria-atomic="true"></p>

internal/godoc/dochtml/testdata/example_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,7 @@ func Example_stringsCompare() {
4646
// 0
4747
// 1
4848
}
49+
50+
func Example_noOutput() {
51+
fmt.Println("hello")
52+
}

static/doc/example.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<p><a class="Documentation-examplesPlay" href="{{.}}">Open in Go playground »</a></p>{{"\n" -}}
1616
{{- end -}}
1717
{{render_code .Example}}{{"\n" -}}
18-
<pre><span class="Documentation-exampleOutputLabel">Output:</span>{{"\n\n"}}<span class="Documentation-exampleOutput">{{- .Output -}}</span></pre>{{"\n" -}}
18+
{{- if .Output -}}<pre><span class="Documentation-exampleOutputLabel">Output:</span>{{"\n\n"}}<span class="Documentation-exampleOutput">{{- .Output -}}</span></pre>{{"\n" -}}{{- end -}}
1919
</div>{{"\n" -}}
2020
{{- if .Play -}}
2121
<div class="Documentation-exampleButtonsContainer">

0 commit comments

Comments
 (0)