commands now can be pulled directly from help via paste
This commit is contained in:
parent
3e5149d4d3
commit
1b27e59b13
1 changed files with 5 additions and 0 deletions
5
index.js
5
index.js
|
@ -31,6 +31,11 @@ async function clickLi(e) {
|
||||||
content = content.slice(content.indexOf(';') + ';'.length, content.length);
|
content = content.slice(content.indexOf(';') + ';'.length, content.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (content[0] == '/') {
|
||||||
|
noExtend = true;
|
||||||
|
content = content.replaceAll(/ \[[^\[]+\]/g,'');
|
||||||
|
}
|
||||||
|
|
||||||
console.log(content)
|
console.log(content)
|
||||||
|
|
||||||
let delimiter = ';';
|
let delimiter = ';';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue