kordamp / markdown-gradle-plugin

Markdown/HTML plugin for gradle
Apache License 2.0
71 stars 51 forks source link

<details> tag conversion from markdown to html is not working starting v1.2.0 #31

Open vincentdelmundo opened 3 years ago

vincentdelmundo commented 3 years ago

plugin version: 1.2.0

in v1.0.0, the markdown format inside the expandable block is converted correctly to html

ex.

in md

<details>
<summary>some summary</summary>

# header
## header2

</details>

=> in html

some summary # header ## header2

but in v1.2.0

in md

<details>
<summary>some summary</summary>

# header
## header2

</details>

=> in html

some summary # header ## header2

Is there a workaround for this behavior?

Note: it is working in Github markdown, but having issues when converted to html