summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2022-10-05 11:57:23 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2022-10-05 11:58:50 -0700
commitb05c380f6ff4375cbc27955653fd31310ff2f94d (patch)
tree5418007d4f39e416e4233319f7fa41387b1ecf81 /test/command
parent2d888d19ac3b95ccec021daeba13e189599f4de5 (diff)
HTML writer: replace deprecated aria roles for bibliography entries.
`doc-biblioentry` -> `listitem` `doc-bibliography` -> `list` Closes #8354.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/8354.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/command/8354.md b/test/command/8354.md
new file mode 100644
index 000000000..96e3d6801
--- /dev/null
+++ b/test/command/8354.md
@@ -0,0 +1,38 @@
+```
+% pandoc -f markdown -t html --citeproc
+---
+title: test
+nocite: '[@*]'
+references:
+- author:
+ - family: Fekete
+ given: Jean-Daniel
+ - family: Freire
+ given: Juliana
+ DOI: 10.1109/MCG.2020.3006412
+ id: feketeExploringReproducibilityVisualization2020
+ ISSN: 1558-1756
+ issue: 5
+ issued: 2020-09
+ page: 108-119
+ source: IEEE Xplore
+ title: Exploring Reproducibility in Visualization
+ container-title: IEEE Computer Graphics and Applications
+ type: article-journal
+ volume: 40
+---
+
+## References
+^D
+<h2 class="unnumbered" id="references">References</h2>
+<div id="refs" class="references csl-bib-body hanging-indent"
+role="list">
+<div id="ref-feketeExploringReproducibilityVisualization2020"
+class="csl-entry" role="listitem">
+Fekete, Jean-Daniel, and Juliana Freire. 2020. <span>“Exploring
+Reproducibility in Visualization.”</span> <em>IEEE Computer Graphics and
+Applications</em> 40 (5): 108–19. <a
+href="https://doi.org/10.1109/MCG.2020.3006412">https://doi.org/10.1109/MCG.2020.3006412</a>.
+</div>
+</div>
+```