Markdown Checkbox-How To Draw Checkbox Or Tick Mark In GitHub Markdown Table?

784    Asked by Amitraj in Python , Asked on Nov 18, 2022

 am able to draw checkbox in Github README.md lists using

- [ ] (for unchecked checkbox)
- [x] (for checked checkbox)

But this is not working in the table. Does anybody know how to implement checkbox or checkmark in GitHub Markdown table?

Answered by Alison Kelly

If you have an issue with the standard markdown checkbox code. You can use emojis. Native Github If you are using GitHub's default emojis, you can use these. Something to note is that there is no uncheck, so you have to use different emojis to get that look.

⬜ :white_large_square
✅ :white_check_mark

Source

:white_large_square: https://github.com/ikatyang/emoji-cheat-sheet/blob/master/README.md#geometric

:white_check_mark: https://github.com/ikatyang/emoji-cheat-sheet/blob/master/README.md#other-symbol

Complete list https://github.com/ikatyang/emoji-cheat-sheet/blob/master/README.md



Your Answer

Interviews

Parent Categories