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.51k stars 145 forks source link

请问要如何取消文件名自动转为链接? #651

Closed huxiaofeng1983 closed 2 weeks ago

huxiaofeng1983 commented 2 weeks ago

Describe the issue

例如:在编辑器中的xxx.py,yyy.sh等部分文件扩展名在预览组件中会自动转为链接从而形成死链,要如何取消这种链接?

Procedure version

4.17.4

Reproduction link

No response

imzbf commented 2 weeks ago

这样禁用

config({
  markdownItConfig(md) {
    md.set({
      linkify: false
    });
  }
});