rsc / markdown

Basic Markdown parser and HTML generator
BSD 3-Clause "New" or "Revised" License
81 stars 4 forks source link

allow capital X in task list items #2

Closed matloob closed 8 months ago

matloob commented 8 months ago

Here's a go program running goldmark and markdown on the following input: https://go.dev/play/p/fZRthH1dl4B

- [X] task list item

Which is rendered on github as:

Its output is:

markdown:
<ul>
<li>[X] task list item</li>
</ul>

goldmark:
<ul>
<li><input checked="" disabled="" type="checkbox" /> task list item</li>
</ul>
rsc commented 2 months ago

Test comment; ignore.