Markdown raw HTML: fix handling of void hr element.

Closes #11793.

Added `voidTags` to unexported module
Text.Pandoc.Readers.HTML.TagCategories.
This commit is contained in:
John MacFarlane
2026-08-05 07:18:12 -07:00
parent f401468a1e
commit 12a44fbb98
3 changed files with 17 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
```
% pandoc -f markdown -t html
<div><hr></div>
^D
<div>
<hr>
</div>
```