ryanmcalister / unotes

Unotes Visual Studio Code Extension. A markdown WYSIWYG notes editor.
MIT License
174 stars 22 forks source link

Unotes removes details section #62

Open KrzysztofKowalczyk opened 4 years ago

KrzysztofKowalczyk commented 4 years ago

Github supports details section in markdown. Example:

Some summary Long content - With all the usual features - Like lists Or code blocks ```groovy println 'Hello' ```

It is done by using html / mdx like tags:

<details>
<summary>Some summary</summary>

Long content
</details>

I think in past Unotes was actually with them. Currently (1.1.5) it does not render them in any way and removes the whole block whenever the note is open, which make Unotes unusable for people relying on them.