imzbf / md-editor-v3

Markdown editor for vue3, developed in jsx and typescript, dark theme、beautify content by prettier、render articles directly、paste or clip the picture and upload it...
https://imzbf.github.io/md-editor-v3
MIT License
1.62k stars 156 forks source link

可以把PDF文件导入编辑器,生成对应的编辑内容嘛??? #643

Closed linyuanjie closed 2 months ago

linyuanjie commented 2 months ago

Describe the issue

现在组件有了导出ExportPDF文件功能,如果我们现在有一个PDF文件,我可以直接把PDF文件导入到md-editor-v3进行编辑修改调整文件内容嘛?

Procedure version

"md-editor-v3": "^4.18.0",

Reproduction link

No response

bintheext commented 2 months ago

显然是不可以的,md-editor-v3不支持反向解析PDF

linyuanjie commented 2 months ago

显然是不可以的,md-editor-v3不支持反向解析PDF

那可以把PDF在导入的时候解析成html文件,再把文件内容再插入到编辑器里面可以嘛? 现在网上已经有好多实现了PDF转换成各种格式的文件,我们只要把PDF解析成md-editor-v3支持的格式应该可以实现吧? md-editor-v3是支持html文件内容的吧。 image

imzbf commented 2 months ago

html是支持的,但是内置了xss处理扩展,如果必须要这样做,你最好确认根据文档中的xss相关说明,去放开相应的html标签

linyuanjie commented 2 months ago

html是支持的,但是内置了xss处理扩展,如果必须要这样做,你最好确认根据文档中的xss相关说明,去放开相应的html标签

Ok. thanks