From aab53b40bd38e8f43de544b3fe62a312933229d7 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Tue, 5 Dec 2023 16:44:42 +0100 Subject: [PATCH] :bug: Fix problem with highlight and fonts --- frontend/src/app/main/ui/components/code_block.cljs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/components/code_block.cljs b/frontend/src/app/main/ui/components/code_block.cljs index 69a54a656..8079cc006 100644 --- a/frontend/src/app/main/ui/components/code_block.cljs +++ b/frontend/src/app/main/ui/components/code_block.cljs @@ -10,6 +10,7 @@ ["highlight.js" :as hljs] [app.common.data.macros :as dm] [app.main.ui.context :as ctx] + [app.util.dom :as dom] [cuerdas.core :as str] [rumext.v2 :as mf])) @@ -19,8 +20,10 @@ (let [new-css-system (mf/use-ctx ctx/new-css-system) block-ref (mf/use-ref) code (str/trim code)] - (mf/with-effect [code type] + (mf/with-effect + [code type] (when-let [node (mf/ref-val block-ref)] + (dom/set-data! node "highlighted" nil) (hljs/highlightElement node))) (if new-css-system