You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever I try to parse with metadata in ClojureScript I have the pre assertion (sequential? lines-seq)
that prevent the execution of the function : markdown.transformers/parse-metadata-headers
It seems that the problem comes from the splitting of the lines (.split (str text "\n") "\n") that yields a JS array.
Using clojure.string ns could resolve the problem (clojure.string/split (str text "\n") "\n") ?
Thank you very much
The text was updated successfully, but these errors were encountered:
Whenever I try to parse with metadata in ClojureScript I have the pre assertion
(sequential? lines-seq)
that prevent the execution of the function :
markdown.transformers/parse-metadata-headers
It seems that the problem comes from the splitting of the lines
(.split (str text "\n") "\n")
that yields a JS array.Using clojure.string ns could resolve the problem
(clojure.string/split (str text "\n") "\n")
?Thank you very much
The text was updated successfully, but these errors were encountered: