From d3f74e229bba5a81f7dd9a062ed153d3a15c656d Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Mon, 1 Dec 2025 15:18:38 +0100 Subject: [PATCH 1/2] ignore clerk cache --- .github/workflows/main.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 08899ff..7d58d97 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -109,12 +109,6 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - - name: 🗝 Clerk Cache - uses: actions/cache@v4 - with: - path: .clerk - key: ${{ runner.os }}-clerk-cache - - name: 🗝 Shadow compiler cache uses: actions/cache@v4 with: From e806ce199f2bd6741b807eee822eda2a0e9da4d9 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Mon, 1 Dec 2025 15:25:18 +0100 Subject: [PATCH 2/2] fix notebook --- notebooks/parsing_extensibility.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/parsing_extensibility.clj b/notebooks/parsing_extensibility.clj index e8a2ac0..80f5e32 100644 --- a/notebooks/parsing_extensibility.clj +++ b/notebooks/parsing_extensibility.clj @@ -11,7 +11,7 @@ ^{:nextjournal.clerk/visibility {:code :hide :result :hide}} (def show-text - {:transform-fn (fn [x] (clerk/html [:pre (deref (:nextjournal/value x))]))}) + {:transform-fn (fn [x] (clerk/html [:pre (:nextjournal/value x)]))}) ;; With recent additions to our `nextjournal.markdown.parser` we're allowing for a customizable parsing layer on top of the tokenization provided by `markdown-it` ([n.markdown/tokenize](https://github.com/nextjournal/markdown/blob/ae2a2f0b6d7bdc6231f5d088ee559178b55c97f4/src/nextjournal/markdown.clj#L50-L52)). ;; We're acting on the text (leaf) tokens, splitting each of those into a collection of [nodes](https://github.com/nextjournal/markdown/blob/ff68536eb15814fe81db7a6d6f11f049895a4282/src/nextjournal/markdown/parser.cljc#L5). We'll explain how that works by means of three examples.