Results 3 comments of Fazhe

这个主要有现成的工具 ,实现起来不复杂 可以试试

已经做了吧 有个buff按钮

can use componentDidUpdate ``` componentDidUpdate(prevProps, prevState, snapshot) { if (this.props.value !== prevProps.value && prevProps.value == null) { const editor = this.editorRef.current.getInstance(); editor.setMarkdown(this.props.value, false); } } ```