tests meant to test the fixes of bug [#9047](https://github.com/jgm/pandoc/issues/9047) ``` % pandoc -f html -t html ^D ``` w/ rawHTML extension a checkbox by itself is kept ``` % pandoc -f html+raw_html -t html+raw_html ^D ``` w/ rawHTML extension, a checkbox in an `li` is handled properly ``` % pandoc -f html+raw_html -t html+raw_html ^D ``` w/o rawHTML extension, a checkbox outside of an `li` is properly ignored ``` % pandoc -f html -t html

foo

^D foo ```