commands now can be pulled directly from help via paste

This commit is contained in:
biglyderv 2025-04-23 09:45:01 -04:00
parent 3e5149d4d3
commit 1b27e59b13
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5

View file

@ -31,6 +31,11 @@ async function clickLi(e) {
content = content.slice(content.indexOf(';') + ';'.length, content.length);
}
if (content[0] == '/') {
noExtend = true;
content = content.replaceAll(/ \[[^\[]+\]/g,'');
}
console.log(content)
let delimiter = ';';