Vanessa219 / vditor

♏ 一款浏览器端的 Markdown 编辑器,支持所见即所得(富文本)、即时渲染(类似 Typora)和分屏预览模式。An In-browser Markdown editor, support WYSIWYG (Rich Text), Instant Rendering (Typora-like) and Split View modes.
https://b3log.org/vditor
MIT License
8.09k stars 844 forks source link

在及时渲染和所见及所得模式下代码块的编辑是否可以直接编辑而不是分为上下两栏 #1634

Closed buqingyishi123 closed 1 month ago

buqingyishi123 commented 1 month ago

码块的编辑是否可以直接编辑而不是分为上下两栏 image

xygengcn commented 1 month ago

+1,很容易操作失误

Vanessa219 commented 1 month ago

下面是渲染的结果,不需要的话可用 css 隐藏。

Yu-Core commented 2 weeks ago
.vditor-wysiwyg__block[data-type="code-block"] .vditor-wysiwyg__pre[style="display: block;"]+.vditor-wysiwyg__preview{
  display:none;
}
.vditor-ir__node--expand[data-type="code-block"] .vditor-ir__preview {
    display: none;
}