We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaf93af commit 9b7d135Copy full SHA for 9b7d135
packages/myst-transforms/src/blocks.ts
@@ -80,7 +80,7 @@ export function blockMetadataTransform(mdast: GenericParent, file: VFile) {
80
}
81
82
if (block.identifier) {
83
- const codeNode = selectAll('code', block) as any as Code | null;
+ const codeNode = select('code', block) as any as Code | null;
84
if (codeNode !== null && !codeNode.identifier) {
85
codeNode.identifier = `${block.identifier}-code`;
86
0 commit comments