From bbf67917ff5652b25fd127fba5efef4aa614aa00 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Mon, 31 Jul 2023 13:42:37 -0700 Subject: [PATCH] Fix conversion, add missing ruby tag --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 9548149..bba8f84 100644 --- a/index.html +++ b/index.html @@ -62,7 +62,7 @@ const output = document.getElementById("output"); const copyButton = document.getElementById("copy"); input.addEventListener("keyup", e => { - output.value = `${input.value.replace(/\[([^\]]*)]{([^\}]*)}/g, "$1($2)")}`; + output.value = `${input.value.replace(/\[([^\]]*)]{([^\}]*)}/g, "$1($2)")}`; copyButton.innerHTML = "Copy"; }); copyButton.addEventListener("click", e => {