tinymce中initialValue属性的值中如果有换行,显示时候换行消失

import { Editor } from '@tinymce/tinymce-react';

// 若干代码
// ...

const text = `
1. major

2. Africa

3. neighbor

4. snacks

5. themes

6. now

7. thousand

8. thought

9. question

10. expression
`;


image.png
  • 通过
     来解决 
    
    ${text}
    
    ` } onEditorChange={e => { this.valuesChange('text', e); }} />
image.png

你可能感兴趣的:(tinymce中initialValue属性的值中如果有换行,显示时候换行消失)