From 689201bfbde5bd48b001bfa2b54db6a1d5a4aa81 Mon Sep 17 00:00:00 2001
From: Conor <hzk@konor.fr>
Date: Wed, 26 Oct 2022 16:12:35 +0000
Subject: [PATCH] feat: Add French translation (#221)

---
 assets/js/util.js |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/assets/js/util.js b/assets/js/util.js
index 72541d8..06db3c1 100644
--- a/assets/js/util.js
+++ b/assets/js/util.js
@@ -58,14 +58,12 @@
   // try to find direct match first
   const directMatchIdx = content.indexOf(term)
   if (directMatchIdx !== -1) {
-    console.log(directMatchIdx)
     const h = highlightWindow
     const before = content.substring(0, directMatchIdx).split(" ").slice(-h)
     const after = content
       .substring(directMatchIdx + term.length, content.length - 2)
       .split(" ")
       .slice(0, h)
-    console.log(before, after)
     return (
       (before.length == h ? `...${before.join(" ")}` : before.join(" ")) +
       `<span class="search-highlight">${term}</span>` +

--
Gitblit v1.10.0