File tree 3 files changed +31
-1
lines changed
3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,32 @@ func main() {
178
178
0
179
179
1
180
180
</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
+ "fmt"
200
+ )
201
+
202
+ func main() {
203
+ fmt.Println("hello")
204
+ }
205
+ </pre>
206
+
181
207
</div>
182
208
<div class="Documentation-exampleButtonsContainer">
183
209
<p class="Documentation-exampleError" role="alert" aria-atomic="true"></p>
Original file line number Diff line number Diff line change @@ -46,3 +46,7 @@ func Example_stringsCompare() {
46
46
// 0
47
47
// 1
48
48
}
49
+
50
+ func Example_noOutput () {
51
+ fmt .Println ("hello" )
52
+ }
Original file line number Diff line number Diff line change 15
15
<p><a class="Documentation-examplesPlay" href="{{.}}">Open in Go playground »</a></p>{{"\n" -}}
16
16
{{- end -}}
17
17
{{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 -}}
19
19
</div>{{"\n" -}}
20
20
{{- if .Play -}}
21
21
<div class="Documentation-exampleButtonsContainer">
You can’t perform that action at this time.
0 commit comments