createdAt: 2024-04-09T20:30:00+09:00
updatedAt: 2024-04-13T18:00:00+09:00
GitHub Flavored Markdown (GFM) is a Markdown dialect based on CommonMark spec. This page lists extensions not exist in CommonMark.
Strikethrough extension
~~This text is rendered with strikethrough~~.
This text is rendered with strikethrough.
Task Lists extension
- [x] Checked
- [ ] Unchecked
- [x] Checked
- [ ] Unchecked
Footnotes extension
This is a normal paragraph[^1].
[^1]: I'm not.
This is a normal paragraph[^1].
[^1]: I’m not.
Autolinks extension
https://github.github.com/gfm/
https://github.github.com/gfm/
Tables extension
| Language | Execution |
| :--------: | ----------------- |
| JavaScript | Interpreter & JIT |
| Language | Execution |
|---|---|
| JavaScript | Interpreter & JIT |
| Dart | AOT or JIT |