# imgui_md
**Repository Path**: willowish/imgui_md
## Basic Information
- **Project Name**: imgui_md
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-10-30
- **Last Updated**: 2026-04-05
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# imgui_md
Markdown renderer for [Dear ImGui](https://github.com/ocornut/imgui) using [MD4C](https://github.com/mity/md4c) parser.
C++11 or above
imgui_md currently supports the following markdown functionality:
* Wrapped text
* Headers
* Emphasis
* Ordered and unordered list, sub-lists
* Link
* Image
* Horizontal rule
* Table
* Underline
* Strikethrough
* HTML elements: \
\
```markdown
# List
1. First ordered list item
2. Another item
* Unordered sub-list 1.
* Unordered sub-list 2.
1. Actual numbers don't matter, just that it's a number
1. **Ordered** sub-list 1
2. **Ordered** sub-list 2
4. And another item with minuses.
- __sub-list with underline__
- sub-list with escapes: \[looks like\]\(a link\)
5. ~~Item with pluses and strikethrough~~.
+ sub-list 1
+ sub-list 2
+ [Just a link](https://github.com/mekhontsev/imgui_md).
* Item with [link1](#link1)
* Item with bold [**link2**](#link1)
```
```markdown
## Credits
[imgui_markdown for ideas](https://github.com/juliettef/imgui_markdown)
[Martin Mitáš for MD4C](https://github.com/mity/md4c)
[Omar Cornut for Dear ImGui](https://github.com/ocornut/imgui)