hinesboy / mavonEditor

mavonEditor - A markdown editor based on Vue that supports a variety of personalized features
http://www.mavoneditor.com/
MIT License
6.38k stars 916 forks source link

你好,请问markdown的<summary></summary>不生效?? #754

Closed ZC520331 closed 2 years ago

ZC520331 commented 2 years ago

image 版本2.10.4,全局引用的方式

ygj6 commented 2 years ago

需要配置一下xssOptions属性,两种方式:

  1. 推荐,按需配置
    xssOptions:{
    whiteList: {
        summary:[],
        details:['open'],
        pre:[],
        code:[]                    
    }              
    }
  2. 有XSS风险,关闭XSS防御 xssOptions: false

更多配置可以查看:https://jsxss.com/zh/options.html

ZC520331 commented 2 years ago

get