Hello,
Is is possible to have a button (or similar functionality) that can toggle some CSS specific to a code block in a single tiddler? I'm trying to toggle word-wrapping for a single code block (not all code blocks in the wiki).
for example
```python
some python code here that may have long lines that I want to toggle the word wrapping for
```
... and I think I need to toggle the effect of the following CSS on and off
pre, code {
word-wrap: normal;
white-space: pre;
}
Thanks, Bob