sindresorhus / generate-github-markdown-css

Generate the CSS for github-markdown-css
MIT License
380 stars 77 forks source link

Unable to parse HTML5 <details> and <summary> relevant style #6

Closed yookoala closed 5 years ago

yookoala commented 5 years ago

As mentioned in sindresorhus/github-markdown-css#60, the stylesheet generated couldn't support the style for HTML5 <details> with <summary>.

Example Code on Github

<details>
<summary>My Example</summary>
Hello world
</details>

Parse Result

My Example Hello world

Relevant CSS by Inspector

2018-12-14 16-45-23

yookoala commented 5 years ago

@sindresorhus Thanks!