In cljs:
(slug "fööbar") ;; -> foobar
(slug "FÖÖBAR") ;; -> fbar
In clj:
(slug "fööbar") ;; -> foobar
(slug "FÖÖBAR") ;; -> foobar
The issue seems to be, that strip-accents only strips lower-case accents and that the string can still contain uppercase letters at this point.
In cljs:
In clj:
The issue seems to be, that
strip-accentsonly strips lower-case accents and that the string can still contain uppercase letters at this point.