samcarter
I would like to add content to a hook throughout my document. Just on one occasion, I would like to ignore the content of the hook. Is there any possibility to skip the hook once?
For example, I would like to add a background to all bears except the second bear:
```
\documentclass{standalone}
\usepackage{tikzlings}
\AddToHook{tikzlings/background}{
\fill[red] (-1,0) rectangle (1,2);
}
\begin{document}
\tikz{\bear}
\begingroup
\RemoveFromHook{tikzlings/background}
\tikz{\bear}
\endgroup
\tikz{\bear}
\end{document}
```
