From bec2c0d2a87664b72db9d95ced3d3490b7406f5f Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Wed, 14 May 2025 12:52:42 -0400 Subject: [PATCH] feat: remove newline --- scripts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/index.js b/scripts/index.js index 7948c1a..38bac6b 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -61,7 +61,7 @@ function renderRepoDescription(repoLink) { const cloneUrl = document.createElement("div"); cloneUrl.style.marginTop = "15px"; - cloneUrl.innerHTML = `git clone \nhttps://git.barrettruth.com/git/${repoName}.git`; + cloneUrl.innerHTML = `git clone https://git.barrettruth.com/git/${repoName}.git`; post.appendChild(cloneUrl); const viewNote = document.createElement("div");