How do I assign a class or id to a code block in a markdown file? For example, I have the following code block in a markdown file:
```python
def sayhello():
s = "hello there"
return s
```
I tried to assign a class to that code block as shown below but it doesn’t work.
```python {.pre1000}
def sayhello():
s = "hello there"
return s
```
The Zola docs have examples of adding attributes to headers in markdown content but I don’t see how to add attributes to the code blocks. I know I can style all the code blocks from the CSS file, but I want to be able to have a style that only applies to certain code blocks. I can do this in Jekyll because Kramdown supports this feature but I’m not sure how this is implemented in Zola.