| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A small sphinx extension to make it possible to add a "toggle button" to sections of your page. This allows you to:
You can install sphinx-togglebutton with pip:
pip install sphinx-togglebuttonIn your conf.py configuration file, add sphinx_togglebutton to your extensions list.
E.g.:
extensions = [
...
'sphinx_togglebutton'
...
]Now, whenever you wish for an admonition to be toggle-able, add the :class: dropdown parameter to the admonition directive that you use.
For example, this code would create a toggle-able "note" admonition that starts hidden:
.. note::
:class: dropdown
This is my note.Clicking on the toggle button will toggle the item's visibility.
You may also show the content by default. To do so, add the dropdown class as well as a toggle-shown class, like so:
.. note::
:class: dropdown, toggle-shown
This is my note.You can also use containers to add arbitrary toggle-able code. For example, here's a container with an image inside:
.. container:: toggle, toggle-hidden
.. admonition:: Look at that, an image!
.. image:: https://media.giphy.com/media/mW05nwEyXLP0Y/giphy.gifThe texts Click to hide and Click to show used in the toggle buttons are internationalized by using the set language from Sphinx's configuration.
Supported languages are English (default), Chinese (Simplified), Chinese (Traditional), Hindi, Spanish, French, Arabic, Bengali, Russian, Portuguese, Indonesian, Japanese, German, Korean, Turkish, Vietnamese, Tamil, Italian, Thai, Dutch, Greek, Polish, Ukrainian, Persian, Malay, Swahili, Romanian, Czech, Hungarian, Hebrew, Swedish, and Norwegian.
| Back | FazBrowse Home | New Git URL |