hackmdio / hackmd-io-issues

Reporting issues about HackMD Enterprise Edition and HackMD.io
36 stars 8 forks source link

Details tag does not support Markdown and cannot be collapsed #343

Closed fugohan closed 11 months ago

fugohan commented 1 year ago

Is this a hackmd.io issue?

Read our Official tutorial

It's on https://hackmd.io/c/tutorials/

或是中文版 https://hackmd.io/c/tutorials-tw/

What's the problem

When I use the details html tag, I can only use html syntax in it. But I want to use markdown in it. Also its not possible to collapse the details tag.

Current behaviour

<details>
Important 
- None
- of these 
- [ ] items 
</details>

image

Expected behaviour

I want to see the markdown output not a line with the text.

Environment

I use HackMD on:

Desktop

jackycute commented 11 months ago

Hi @fugohan, For you case, please leave a blank line under and above the html tags like this:

<details>

Important 
- None
- of these 
- [ ] items

</details>

This should works.