Add br tag in parser.ts

This commit is contained in:
kwaroran
2024-01-15 12:39:59 +09:00
parent a1c6cbdf24
commit 17e21d7aa6

View File

@@ -606,7 +606,9 @@ const matcher = (p1:string,matcherArg:matcherArg) => {
//output, like 1:30:00
return hours.toString() + ':' + minutes.toString().padStart(2,'0') + ':' + seconds.toString().padStart(2,'0')
}
case 'br':{
return '\n'
}
}
const arra = p1.split("::")
if(arra.length > 1){