fleimgruber
fleimgruber
> What are the src block options you are using to capture the file? The src block header reads as ``` #+begin_src julia :results raw :file "filepath.png" :wrap (src-decorate "name"...
FYI, for a default width I am now using `org-image-actual-width` with a value of `'(640)` as described e.g. in https://github.com/nnicandro/emacs-jupyter/issues/178#issuecomment-530070846. This is what I would use `#+ATTR_ORG:` for most of...
> my current solution is to patch fig.show so it saves html and returns an Image and FileLink so I can see what the figure is, and click a link...
Thanks! I changed the last return line to `return Image(pio.to_image(self, 'png', engine="kaleido"))` to not use the deprecated orca engine. Now I get this as a result ``` #+RESULTS: :RESULTS: :...
Thanks for the example! I am getting results below with ``` org-babel-default-header-args:jupyter-python’s value is ((:async . "yes") (:session . "py") (:kernel . "lg")) ``` 
Thanks for the shove, with `:pandoc t` it works!
How did you set up emacs-jupyter with respect to Julia?
I guess `jupyter-repl-associate-buffer` does not work as you expect because the kernel language `pyspark` does not correspond to the `major-mode` of the buffer you want to associate, see also [here](https://github.com/nnicandro/emacs-jupyter#associating-other-buffers-with-a-repl-jupyter-repl-interaction-mode)....
This should be configured in org-mode itself.
> All of my commonly used julia latex completions work in the jupyter repl and org jupyter-julia blocks except the \bb___ family, i.e. \bbone (𝟙) When you say it does...