kkfor / for-editor

for-editor - A markdown editor based on React
https://md.kkfor.com/
MIT License
405 stars 77 forks source link

默认subfield模式不生效 #25

Closed zhangyu921 closed 5 years ago

zhangyu921 commented 5 years ago

感谢分享~

            <ForEditor
              height="300px"
              subfield={true}
              toolbar={{
                h1: true, // h1
                h2: true, // h2
                h3: true, // h3
                h4: true, // h4
                img: true, // 图片
                link: true, // 链接
                code: true, // 代码块
                undo: true, // 撤销
                redo: true, // 重做
                subfield: true,
              }}
            />

初始时,按钮显示已激活,但并没有开启; 取消后再次点击,恢复正常;

image

kkfor commented 5 years ago

双栏模式,只有在预览模式激活的情况下才会生效。 如果想要双栏预览模式,请同时添加subfield preview属性。 eg:

<Editor
  subfield
  preview
  value={value}
  onChange={value => this.handleChange(value)}
/>
zhangyu921 commented 5 years ago

了解了~