It seems that it is impossible to add an attribute the the <pre> block. It is a block level element, so according to the source code attr_list will try to get the definition from the last line of the block, but this does not happen, e.g.:
```
code block
{ #something }
```
Will be just rendered as:
code block
{ #something }
Or do I miss something and there is some what re: how one can add an attribute to the <pre> block in Markdown?
It seems that it is impossible to add an attribute the the
<pre>block. It is a block level element, so according to the source codeattr_listwill try to get the definition from the last line of the block, but this does not happen, e.g.:Will be just rendered as:
Or do I miss something and there is some what re: how one can add an attribute to the
<pre>block in Markdown?