@@ -45,13 +45,13 @@ func ExampleTag_02fullhtml() {
45
45
//
46
46
// <html>
47
47
// <head>
48
- // <meta charset='utf8'/ >
48
+ // <meta charset='utf8'></meta >
49
49
//
50
50
// <title>My test page</title>
51
51
// </head>
52
52
//
53
53
// <body>
54
- // <img src='images/firefox-icon.png' alt='My test image'/ >
54
+ // <img src='images/firefox-icon.png' alt='My test image'></img >
55
55
// </body>
56
56
// </html>
57
57
}
@@ -85,7 +85,7 @@ func ExampleTag_03rawhtmlandcomponent() {
85
85
// <div class='userProfile'>
86
86
// <h1 class='profileName'>felix<h1></h1>
87
87
//
88
- // <img src='http://image.com/img1.png' class='profileImage'/ >
88
+ // <img src='http://image.com/img1.png' class='profileImage'></img >
89
89
// <svg>complicated svg</svg>
90
90
// </div>
91
91
// </li>
@@ -94,7 +94,7 @@ func ExampleTag_03rawhtmlandcomponent() {
94
94
// <div class='userProfile'>
95
95
// <h1 class='profileName'>john</h1>
96
96
//
97
- // <img src='http://image.com/img2.png' class='profileImage'/ >
97
+ // <img src='http://image.com/img2.png' class='profileImage'></img >
98
98
// <svg>complicated svg</svg>
99
99
// </div>
100
100
// </li>
@@ -305,7 +305,7 @@ func ExampleTag_06httphandler() {
305
305
//
306
306
// <html>
307
307
// <head>
308
- // <meta charset='utf8'/ >
308
+ // <meta charset='utf8'></meta >
309
309
// </head>
310
310
//
311
311
// <body>
@@ -341,9 +341,9 @@ func ExampleTag_07MutipleTypeAttrs() {
341
341
Fprint (os .Stdout , comp , context .TODO ())
342
342
//Output:
343
343
// <div>
344
- // <input name='username' type='checkbox' checked more-data='{"Name":"felix","Count":100}' max-length='10'/ >
344
+ // <input name='username' type='checkbox' checked more-data='{"Name":"felix","Count":100}' max-length='10'></input >
345
345
//
346
- // <input name='username2' type='checkbox'/ >
346
+ // <input name='username2' type='checkbox'></input >
347
347
// </div>
348
348
}
349
349
@@ -356,7 +356,7 @@ func ExampleTag_08styles() {
356
356
StyleIf ("color:blue" , true )
357
357
Fprint (os .Stdout , comp , context .TODO ())
358
358
//Output:
359
- // <div style='background-color:red; border:1px solid red; color:blue;'/ >
359
+ // <div style='background-color:red; border:1px solid red; color:blue;'></div >
360
360
}
361
361
362
362
/*
0 commit comments