Is it possible to use jupyter_contrib_nbextensions extension like "Collapsible Headings" in nbviewer?
I've managed to use it locally by doing the following steps:
# Install Jupyterextension package
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install
# Install configurator and enable configurator
pip install jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable
Then I've just enabled "Collapsible Headings" in nbextensions configurator panel.
But when I've uploaded the notebook to the GitHub and then tried to open it with nbviewer or mybinder it launched the notebook but without collapsible heading support.
How can I "tell" nbviewer or mybinder that I need them to use "Collapsible Headings" extensions? I've updated my requirements.txt file and added jupyter_contrib_nbextensions dependency to it but it looks like it is not enough...