1 空格解析失效
找到wxDiscode下的strcharacterDiscode的str = str.replace(/ /g,' ');如下
替换成
str = str.repalce(/ /g,'\xa0') ;
2 换行解析不出来
找到wxDiscode下的strMoreDiscode的str = str.replace(/\r\n/g,"");如下
替换成str = str.replace(/code/g,"wxxxcode-style");
1 空格解析失效
找到wxDiscode下的strcharacterDiscode的str = str.replace(/ /g,' ');如下
替换成
str = str.repalce(/ /g,'\xa0') ;
2 换行解析不出来
找到wxDiscode下的strMoreDiscode的str = str.replace(/\r\n/g,"");如下
替换成str = str.replace(/code/g,"wxxxcode-style");