-
Notifications
You must be signed in to change notification settings - Fork 568
New issue
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
blank page when using -to slides #91
Comments
Which version of IPython/Jupyter or nbconvert are you using? the problem with Reveal.js > 3 is that now the library is loaded in a different way... so it would not work with our previous implementations... we have fix that in this repo and if you use Jupyter 4.0 you will be using Reveal.js 3.1 by default... BUT, you need to be aware that darkish themes do not work well with the notebook css, so probably using a theme like "black" will not work without further customization on the css... |
I'm using python 2.7.10 / Anaconda 2.3.0 (x86_64), and IPython 4.0.0 (nbconvert the same). When I select the black theme, I get:
When I select the "night" one, there is no error but the background refuses to change (stays white). Which css file should I change to fix that? |
Here is the commit changing the url for reveal 3.1: aecc6c2 |
For those still getting this issue, this is the prefix that worked for me as of today:
No need of |
Current version of nbconvert 5.2.1 is loading reveal.js 3.1.0 when you are using --post serve. |
Hi,
I'm experiencing an issue that I think has been fixed, I may just not be able to link to the proper version of reveal.js
When I do
ipython nbconvert Untitled6.ipynb --to slides --post serve --reveal-prefix http://cdn.jsdelivr.net/reveal.js/2.6.2
, everything works fine, but if I useipython nbconvert --to slides --post serve --reveal-prefix http://cdn.bootcss.com/reveal.js/3.1.0
, I see a blank screen.Now I've tried downloading the master and dev branches and adding them locally (e.g.
--reveal-prefix "reveal.js-dev"
), but I get the same result.The reason I want to access a newer version of reveal.js is maybe a bit trivial: I'd like to use the black theme, which doesn't seem to be available in 2.6.2.
The text was updated successfully, but these errors were encountered: