-
I'm trying to reproduce this example in the documentation: https://jupyterbook.org/content/content-blocks.html#tabbed-content in particular, I added a markdown cell and put this code in: (backslashes are there only to escape here for github markdown, I don't have them in the code).
However, when I build the book I get this warning:
and the markdown cell does not show at all in the rendered book. my config file looks like this right now:
I am using jupyter-book 0.8.1 with python 3.8.5 on Ubuntu 18.04 What could be wrong? It works OK with the dropdown example. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Oh maybe I have to update some dependencies like myst parser or so? I'll check that tomorrow |
Beta Was this translation helpful? Give feedback.
-
ok actually the problem is this: I upgraded to the last version of jupyter-book (0.8.1) and the issue was there. The version of sphinx-panels that was installed was 0.4.1. Now I upgraded sphinx-panels to 0.5 not without getting this warning:
Now it works. However that means that the requirement in jupyter-book 0.8.1 is incorrect. I see that that is fixed in the master branch, so I guess it will be good on the next release. |
Beta Was this translation helpful? Give feedback.
ok actually the problem is this: I upgraded to the last version of jupyter-book (0.8.1) and the issue was there. The version of sphinx-panels that was installed was 0.4.1.
Now I upgraded sphinx-panels to 0.5 not without getting this warning:
Now it works. However that means that the requirement in jupyter-book 0.8.1 is incorrect. I see that that is fixed in the master branch, so I guess it will be good on the next release.