https://github.com/kurama622/imgui-markdowneditor
A Sample ImGui Markdown Editor
https://github.com/kurama622/imgui-markdowneditor
Last synced: 1 day ago
JSON representation
A Sample ImGui Markdown Editor
- Host: GitHub
- URL: https://github.com/kurama622/imgui-markdowneditor
- Owner: Kurama622
- Created: 2022-03-26T04:02:22.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-03T11:18:38.000Z (over 3 years ago)
- Last Synced: 2025-03-01T03:45:52.799Z (8 months ago)
- Language: C++
- Homepage:
- Size: 30.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ImGui-MarkdownEditor
## 本项目可以做什么
* 提供一个CMake编译ImGui的示例
* 提供一个简易的Markdown编辑器## 示例

```markdown
# ImGui-MarkdownEditor## 本项目可以做什么
* 提供一个CMake编译ImGui的示例
* 提供一个简易的Markdown编辑器***
ImGui-MarkdownEditor 目前支持以下功能:* 文本自动换行
* 多级标题
* 强调
* 无序列表
* 链接
* 图片
* 横线## 参考
* [imgui](https://github.com/ocornut/imgui)
* [imgui_markdown](https://github.com/juliettef/imgui_markdown)
```
## 支持的语法### 标题
```
# H1
## H2
### H3
```
### 强调
```
*emphasis*
_emphasis_
**strong emphasis**
__strong emphasis__
```
### 无序列表
```
Normal text
··*·Unordered List level 1
····*·Unordered List level 2
······*·Unordered List level 3
······*·Unordered List level 3
··*·Unordered List level 1
Normal text
```
### 链接
```
[link description](https://...)
```
### 图片
```

```
### 横线
```
***
```## 参考
[imgui](https://github.com/ocornut/imgui)[imgui_markdown](https://github.com/juliettef/imgui_markdown)
## 相较于imgui_markdown的改动
* 添加了linux下链接打开方式
* 完善了显示图片的功能
* 添加了字体设置一些不重要的功能