I'm trying to use the <summary> and <details> HTML tags, but any markdown inside of them that I used is ignored. Here's a sample of what I'm trying to do: ``` <details> <summary> ## My test! </summary> * Elem1 * Elem 2 </details> ``` The output of that ends up being: ``` "<summary>\n\n## My test!\n\n</summary>\n<details>\n\n* Elem1\n* Elem 2\n</details>\n" ``` I've tried using the parse_block_html option and adding markdown="1" or markdown="span" to the HTML tags, but the text inside there just gets ignored. I looked in https://github.com/gettalong/kramdown/blob/master/lib/kramdown/parser/html.rb#L57 and it seems like <summary> should be working as expected, though <details> is not there, so it might be getting ignored alltogether. I'm totally willing to look into it myself if you can point me in the direction of a good place to start. Thanks!
I'm trying to use the
and
Details
HTML tags, but any markdown inside of them that I used is ignored. Here's a sample of what I'm trying to do:The output of that ends up being:
I've tried using the parse_block_html option and adding markdown="1" or markdown="span" to the HTML tags, but the text inside there just gets ignored.
I looked in https://github.com/gettalong/kramdown/blob/master/lib/kramdown/parser/html.rb#L57 and it seems like
should be working as expected, though
I'm totally willing to look into it myself if you can point me in the direction of a good place to start. Thanks!