-
DescriptionI can't get code-annotation to work in code blocks that leads to multiple figures. If I remove the
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
(This is a bug, thanks for catching it!) @dragonstyle What's happening here is that the layout code has some clever bits that "yank out" the code cells from the layout output, and it's not pulling the definition list along with it. I can add a hack to solve the problem, but I wonder if the right thing is for us to make code annotations part of the |
Beta Was this translation helpful? Give feedback.
(This is a bug, thanks for catching it!)
@dragonstyle What's happening here is that the layout code has some clever bits that "yank out" the code cells from the layout output, and it's not pulling the definition list along with it.
I can add a hack to solve the problem, but I wonder if the right thing is for us to make code annotations part of the
DecoratedCodeBlock
AST node, so that the rest of our AST processing doesn't need to always remember that a CodeBlock can't be moved away by itself.