From 1b27e59b13608888676078f0a2b817347c0f1004 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Wed, 23 Apr 2025 09:45:01 -0400 Subject: [PATCH] commands now can be pulled directly from help via paste --- index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.js b/index.js index 15675a5..1a9a92f 100644 --- a/index.js +++ b/index.js @@ -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 = ';';