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 28b882d commit 36ad00dCopy full SHA for 36ad00d
src/core/jupyter/jupyter.ts
@@ -1096,6 +1096,11 @@ async function mdFromCodeCell(
1096
// write div enclosure
1097
const divMd: string[] = [`::: {`];
1098
1099
+ // add the id
1100
+ if (cell.id) {
1101
+ divMd.push(`#${cell.id} `);
1102
+ }
1103
+
1104
// metadata to exclude from cell div attributes
1105
const kCellOptionsFilter = kJupyterCellInternalOptionKeys.concat(
1106
kJupyterCellStandardMetadataKeys,
0 commit comments