-
关于 vditor.insertValue()插入问题
2022-09-23 11:52你好,那假如我要插入的 markdown 文档中,代码块只是其中一部分 那这种插入方法不就没用了吗,例如一篇 markdown 文档中不止有代码块 还有其他的文本格式 @Vanessa
-
关于 vditor.insertValue()插入问题
2022-09-21 10:01<!-- TODO 超级SDK:添加网络安全配置, 以在Android9.0上访问http资源 --> <application android:networkSecurityConfig="@xml/super_network_security_config" > <!-- SuperSDK start --> <!-- TODO 超级SDK:添加FileProvider配置,以在Android9.0上访问文件,${package_name}为应用包名,包名在gradle中配置 --> <provider android:name="cn.ewan.supersdk.provider.SuperFileProvider" android:authorities="${package_name}.super.fileprovider" android:exported="false" android:grantUriPermissions="true"> <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/super_file_path"/> </provider> <!-- SuperSDK end --> </application>
@Vanessa 可尝试用这个代码块 用 insertValue 插入
-
关于 vditor.insertValue()插入问题
2022-09-21 09:51const config: any = { width: '100%', minHeight: 400, // cdn: '/public/js/vditor', cdn: 'https://staticweb.ewan.cn/libs/vditor', placeholder: '请输入markdown格式文本', toolbar: [ 'headings', 'bold', 'italic', 'strike', '|', 'line', 'quote', 'list', 'ordered-list', 'check', 'outdent', 'indent', 'code', 'inline-code', 'insert-after', 'insert-before', 'undo', 'redo', 'upload', 'link', 'table', 'edit-mode', 'preview', 'fullscreen', 'outline', 'export', { hotkey: '⌘-⇧-S', name: 'sponsor', tipPosition: 's', tip: '成为赞助者', className: 'right', icon: 'xxx', click() { md.insertValue(props.data[props.option.key]); } } ], tab: '\t', preview: { delay: 50, maxWidth: 19200, toc: true, hljs: { lineNumber: true, style: { 'max-height': 'auto' } }, actions: ['desktop', 'tablet', 'mobile'], markdown: { fixTermTypo: true, listStyle: true, codeBlockPreview: false } }, outline: { enable: true, position: 'right' }, cache: { enable: false }, // input: onChange, // focus: onChange, blur: onChange, after: () => {} }; onMounted(() => { key.value = Math.random(); setTimeout(() => { md = new Vditor('content', { ...config, value: props.data[props.option.key] }); }, 150); });
@Vanessa 你好这就是所写代码, props.data[props.option.key]为后端返回的 markdown 文本,其中代码块部分用 insertValue 插入的话 就会出现错乱
-
关于 vditor.insertValue()插入问题
2022-09-20 14:34insertValue 的值为后台返回的 content ,用 new Vditor 可以完美展示 但是用 insertValue 就会出现问题
-
关于 vditor 发布 plaintext 语法问题
2022-07-21 21:17我已经加载出来 markdown 了 不单单是那个 plainText 语法 java 等回调都这个问题 回显插入代码块会丢失 @88250
-
关于 vditor 发布 plaintext 语法问题
2022-07-21 20:32这是后端返回的文本数据 我直接复制到 vditor 还是可以正常显示
我尝试了加入
md.vditor.lute.Md2HTML
去转化,发现可以正常回显 但是会导致其他输入出现问题 @88250 -
关于 vditor 发布 plaintext 语法问题
2022-07-21 20:26可是后端没有做任何过滤处理啊 直接拿文本内容直接储存的 入参及返回数据都是同样的,我怀疑是转换结果不正确 部分代码块的标识转换没了
-
Vditor 关于 code 代码块 文本不对齐问题
2022-05-11 10:40@88250 感谢大佬,但是因为业务这边,markdown 文件基本都是复制粘贴过来的,文章内容太长时候,可能不能做到一个一个去 tab 格式, 请问后续有没有粘贴进来自动格式化的功能, 像 vscode 那样子
-
Vditor 一款浏览器端的 Markdown 编辑器,支持所见即所得(富文本)、即时渲染(类似 Typora)和分屏预览模式
2022-05-09 11:46code 代码块 样式没有对齐问题 请问怎么解决