Render task list item inside label for correct accessibility
authorDaniel Karlsson <danielk@fliffr.com>
Fri, 4 Aug 2017 15:08:27 +0000 (17:08 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 9 Aug 2017 18:09:43 +0000 (20:09 +0200)
Fixes #3303

helpers/content_renderer.go
helpers/content_renderer_test.go

index dee8724a9b711350f4ada56af0db2da4e7c6eaa5..63be58104a1a44422f94dd577b0b51c1e8822a4d 100644 (file)
@@ -50,10 +50,12 @@ func (r *HugoHTMLRenderer) ListItem(out *bytes.Buffer, text []byte, flags int) {
 
        switch {
        case bytes.HasPrefix(text, []byte("[ ] ")):
-               text = append([]byte(`<input type="checkbox" disabled class="task-list-item">`), text[3:]...)
+               text = append([]byte(`<label><input type="checkbox" disabled class="task-list-item">`), text[3:]...)
+               text = append(text, []byte(`</label>`)...)
 
        case bytes.HasPrefix(text, []byte("[x] ")) || bytes.HasPrefix(text, []byte("[X] ")):
-               text = append([]byte(`<input type="checkbox" checked disabled class="task-list-item">`), text[3:]...)
+               text = append([]byte(`<label><input type="checkbox" checked disabled class="task-list-item">`), text[3:]...)
+               text = append(text, []byte(`</label>`)...)
        }
 
        r.Renderer.ListItem(out, text, flags)
index 63e681d97b9c733c3927a77652f007f68d612a7c..3bd038547d00f2bf236390083dd842d68ff84020 100644 (file)
@@ -108,9 +108,9 @@ END
 `, true, `<p>TODO:</p>
 
 <ul class="task-list">
-<li><input type="checkbox" checked disabled class="task-list-item"> On1</li>
-<li><input type="checkbox" checked disabled class="task-list-item"> On2</li>
-<li><input type="checkbox" disabled class="task-list-item"> Off</li>
+<li><label><input type="checkbox" checked disabled class="task-list-item"> On1</label></li>
+<li><label><input type="checkbox" checked disabled class="task-list-item"> On2</label></li>
+<li><label><input type="checkbox" disabled class="task-list-item"> Off</label></li>
 </ul>
 
 <p>END</p>
@@ -122,7 +122,7 @@ END
                {`* [ ] Off
 
 END`, true, `<ul class="task-list">
-<li><input type="checkbox" disabled class="task-list-item"> Off</li>
+<li><label><input type="checkbox" disabled class="task-list-item"> Off</label></li>
 </ul>
 
 <p>END</p>