阿菜 Cai

Results 211 comments of 阿菜 Cai

![image](https://github.com/Tencent/cherry-markdown/assets/81673017/e49d8455-584d-4af7-b19b-c69ea3acac44) 可以在这部分添加一个图标嘛?类似于书签一样的样式。当hover的时候延伸出来,通过点击调出工具栏。这里是在编辑区之外应该不影响编辑区、

这里有些展示不全,所以可能需要一个横向滚动条。 ![image](https://github.com/Tencent/cherry-markdown/assets/81673017/80967178-7ccb-486e-ab67-38375a0d395b)

> ![image](https://user-images.githubusercontent.com/998441/264514203-463aa00f-f02e-4f31-9e73-ed8c82871983.png) ![image](https://user-images.githubusercontent.com/998441/264514242-2dfdccf8-e0f7-4cd1-bf54-2c1dbf8237e8.png) > > 不建议引入横向滚动条,建议还是提供“适配宽度,自适应展开收起到更多按钮”的功能 ok

same as https://github.com/Tencent/cherry-markdown/issues/340

> 功能添加了吗 最近主要在修复bug,下个会版本支持,再等等下。

是的,我也认为应该做一个文档,不仅仅是放在每个md文档下,可以使用md文档通过列如[vitepress](https://github.com/vuejs/vitepress)等静态站点生成一份doc,一方面方便**使用者快速查阅需要功能**,另一方面完善的文档更容易推进使用者的入手搭建速度。

> 一年过去了 你好, 1. 现在详细文档已经在编辑中,最近再更新一下文档,如果你想投入到文档建设中,可以关注一下:https://github.com/Tencent/cherry-markdown/tree/main/docs 2. 关于 vue3、react的示例项目已经在编辑中,最近会放到文档内预览。

目前只有支持多语言设置的 config.ts ``` { //.... locale: "en_US", } ``` 或者你的意思是在toolbar添加一个切换语言的工具栏? (当然你目前也可以使用自定义工具栏[`Cherry.createMenuHoo`](https://github.com/Tencent/cherry-markdown#customize-toolbar))

![image](https://github.com/Tencent/cherry-markdown/assets/81673017/8e8893d4-1aab-4f65-b61f-8e22a81019ee) 感觉有更好的方法,我最近忙,还没有去做处理和思考。 ```ts fileUpload(file: File, callback: (path: string, arg: { [key: string]: any }) => void) { console.log(file) const fileUrl = URL.createObjectURL(file) console.log('url', fileUrl) if (/video/i.test(file.type)) { callback(fileUrl, { name:...