We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Emacs signals the error Error parsing SVG image: Invalid XML declaration when trying to display the result of evaluating of the Org-mode block:
Error parsing SVG image: Invalid XML declaration
#+begin_src jupyter-julia get_cmap("RdGy") #+end_src
This is because of the typo in the file colormaps.jl. The line number 176:
colormaps.jl
<?xml version"1.0" encoding="UTF-8"?>
needs to be changed to:
<?xml version="1.0" encoding="UTF-8"?>
The text was updated successfully, but these errors were encountered:
Why not just submit a PR for this?
Sorry, something went wrong.
Fix typo in colormaps.jl (JuliaPy#517)
8e811f6
Now created a PR #528 . Please merge it.
Fix typo in colormaps.jl (#517) (#528)
0873d74
No branches or pull requests
Emacs signals the error
Error parsing SVG image: Invalid XML declaration
when trying to display the result of evaluating of the Org-mode block:This is because of the typo in the file
colormaps.jl
. The line number 176:needs to be changed to:
The text was updated successfully, but these errors were encountered: