Commit de751893 by liyaoting

V1.05

修复格式错乱
1 parent 2065371c
......@@ -182,7 +182,14 @@
imageBuildEnd = i;
}
if (row.indexOf("sleep") != -1) {
row = row.trim();
let sleepRow = "sleep";
let strings = row.split("sleep");
strings.forEach((str,index)=>{
if (index>0){
sleepRow+=str;
}
});
row = sleepRow;
row = this.dealStr(row);
let rowObj = {
rowNo: i,
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!