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 2a37d1e commit 9f346a1Copy full SHA for 9f346a1
src/core/jupyter/labels.ts
@@ -18,11 +18,7 @@ import {
18
import { includeOutput } from "./tags.ts";
19
20
export function cellLabel(cell: JupyterCellWithOptions) {
21
- // ensure id starts with a letter
22
- const id = cell.id ? `cell-id-${cell.id}` : "";
23
-
24
- const label =
25
- (cell.options[kCellLabel] || cell.metadata[kCellName] || id || "");
+ const label = (cell.options[kCellLabel] || cell.metadata[kCellName] || "");
26
27
if (label && !label.startsWith("#")) {
28
return "#" + label;
0 commit comments