When using Sphinx 1.1.3, how can I create a .. glossary::
entry that does not show up in the automatically generated index?
I tried :noindex:
in four places:
Before and after the glossary makes the glossary disappear.
.. :noindex: glossary::
`term`
definition
.. glossary:: :noindex:
`term`
definition
while putting it with the term makes the term clickable and displays the :noindex:
.
.. glossary::
:noindex: `term`
definition
.. glossary::
`term` :noindex:
definition
My term has special characters, so I'm deliberately enclosing it with backticks.