QuillJS 预览不是编辑器视图格式问题
QuillJS preview is not as editor view- formatting issue
我正在使用 React quill 编辑器并且该编辑器工作正常。但是当我显示 html 内容时,它不是编辑器视图中显示的格式。在控制台中,我可以看到 ql-indent class 已应用于标记,但它在编辑器外部不起作用。我尝试应用羽毛笔 core.css 样式但仍然没有用。
很难找到有关在编辑器外显示 quill-editor html 内容的指南。
所以请帮我把 ql-xxxx classes 交给外部编辑。
我通过将 ql-editor class 添加到预览 div 标签来修复它。
<div className="ql-editor" dangerouslySetInnerHTML={{__html: htmlContent}} />
我正在使用 React quill 编辑器并且该编辑器工作正常。但是当我显示 html 内容时,它不是编辑器视图中显示的格式。在控制台中,我可以看到 ql-indent class 已应用于标记,但它在编辑器外部不起作用。我尝试应用羽毛笔 core.css 样式但仍然没有用。
很难找到有关在编辑器外显示 quill-editor html 内容的指南。 所以请帮我把 ql-xxxx classes 交给外部编辑。
我通过将 ql-editor class 添加到预览 div 标签来修复它。
<div className="ql-editor" dangerouslySetInnerHTML={{__html: htmlContent}} />