Skip to content

Commit d8c2773

Browse files
committed
don't test impl namespace anymore
1 parent 2f28687 commit d8c2773

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/nextjournal/markdown_test.cljc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
[matcher-combinators.matchers :as m]
66
[matcher-combinators.test :refer [match?]]
77
[nextjournal.markdown :as md]
8-
[nextjournal.markdown.impl.utils :as impl-u]
9-
[nextjournal.markdown.transform :as md.transform]))
8+
[nextjournal.markdown.transform :as md.transform]
9+
[nextjournal.markdown.utils :as u]))
1010

1111
;; com.bhauman/cljs-test-display doesn't play well with ANSI codes
1212
#?(:cljs (matcher-combinators.ansi-color/disable!))
@@ -64,11 +64,11 @@ $$\\int_a^bf(t)dt$$
6464
(md/parse "https://clerk.vision"))))
6565

6666
(defn parse-internal-links [text]
67-
(md/parse* (update impl-u/empty-doc :text-tokenizers conj impl-u/internal-link-tokenizer)
67+
(md/parse* (update u/empty-doc :text-tokenizers conj u/internal-link-tokenizer)
6868
text))
6969

7070
(defn parse-hashtags [text]
71-
(md/parse* (update impl-u/empty-doc :text-tokenizers conj impl-u/hashtag-tokenizer)
71+
(md/parse* (update u/empty-doc :text-tokenizers conj u/hashtag-tokenizer)
7272
text))
7373

7474
(deftest parse-test
@@ -582,7 +582,7 @@ Par.
582582
[^note2]: Explain 2
583583
"
584584
md/parse
585-
impl-u/insert-sidenote-containers))
585+
u/insert-sidenote-containers))
586586

587587
(deftest footnotes
588588
(testing "foonotes via references"

0 commit comments

Comments
 (0)