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.63k stars 156 forks source link

行尾英文单词截断问题 #600

Closed jiabochao closed 3 months ago

jiabochao commented 3 months ago

Describe the issue

行尾在显示英文单词时会将单词截断,导致难以阅读,请问有什么方法可以禁止截断吗

image

Procedure version

v4.17.3

Reproduction link

No response

jiabochao commented 3 months ago

使用这个方式可以解决:

.md-editor-preview {
  word-break: keep-all;
  word-wrap: break-word;
}