File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 5
5
[matcher-combinators.matchers :as m]
6
6
[matcher-combinators.test :refer [match?]]
7
7
[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 ]))
10
10
11
11
; ; com.bhauman/cljs-test-display doesn't play well with ANSI codes
12
12
#?(:cljs (matcher-combinators.ansi-color/disable! ))
@@ -64,11 +64,11 @@ $$\\int_a^bf(t)dt$$
64
64
(md/parse " https://clerk.vision" ))))
65
65
66
66
(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)
68
68
text))
69
69
70
70
(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)
72
72
text))
73
73
74
74
(deftest parse-test
582
582
[^note2]: Explain 2
583
583
"
584
584
md/parse
585
- impl- u/insert-sidenote-containers))
585
+ u/insert-sidenote-containers))
586
586
587
587
(deftest footnotes
588
588
(testing " foonotes via references"
You can’t perform that action at this time.
0 commit comments