Fork me on GitHub
#klipse
<
2020-08-31
>
samedhi18:08:01

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.

samedhi18:08:44

Pretty evident that I am pulling from http://viebel.github.io when I mean to be pulling from my project's github repo...

samedhi18:08:28

I am using data-external-libs with this

</p><p></p><pre> <code class="language-klipse nohighlight" data-external-libs=""> (require '[firemore.core :as firemore]) </code> </pre><p>
I think this used to work, has the syntax for using data-external-libs changed?

samedhi18:08:18

I am getting the same behavior when I do local development, with the following code

<pre>
<code class="language-klipse" data-external-libs="">
(require '[firemore.core :as firemore])
</code>
</pre>

samedhi23:08:19

Smallest reproducing case. It seems like core.async is just having issues. index.html

<link rel="stylesheet" 
      type="text/css" 
      href="">

<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=""></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!