I am noticing that a documentation site I previously made https://firemore.org/ is now having issues with pulling my github code. I am seeing the following error in my klipse window when I attempt to pull my projects source.
Pretty evident that I am pulling from http://viebel.github.io when I mean to be pulling from my project's github repo...
I am using data-external-libs
with this
</p><p></p><pre> <code class="language-klipse nohighlight" data-external-libs="<https://raw.githubusercontent.com/samedhi/firemore/master/src>"> (require '[firemore.core :as firemore]) </code> </pre><p>
I think this used to work, has the syntax for using data-external-libs
changed?I am getting the same behavior when I do local development, with the following code
<pre>
<code class="language-klipse" data-external-libs="<http://localhost:8000/src>">
(require '[firemore.core :as firemore])
</code>
</pre>
Smallest reproducing case. It seems like core.async is just having issues.
index.html
<link rel="stylesheet"
type="text/css"
href="<https://storage.googleapis.com/app.klipse.tech/css/codemirror.css>">
<pre>
<code class="language-klipse">
(ns firemore.readme
(:require
[cljs.core.async :as async])
(:require-macros
[cljs.core.async.macros :refer [go-loop go]]))
(js/console.log "This works fine")
(go (js/console.log "This does not"))
</code>
</pre>
<script>
window.klipse_settings = {
// css selector the elements to klipsify
selector: '.language-klipse'
};
</script>
<script src="<https://storage.googleapis.com/app.klipse.tech/plugin/js/klipse_plugin.js>"></script>
OUTPUT
Unexpected error (Error) macroexpanding cljs.core.async.impl.ioc-macros$macros/aset-all! at (<cljs repl>:1:1).
Wrong number of args (5) passed to cljs.core.async.impl.ioc-macros$macros/aset-all!