We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3965f49 commit d2a1ee2Copy full SHA for d2a1ee2
src/command/convert/jupyter.ts
@@ -147,6 +147,7 @@ async function mdFromCodeCell(
147
// determine the largest number of backticks in the cell
148
const maxBackticks = Math.max(
149
...cell.source.map((line) => line.match(/^`+/g)?.[0].length || 0),
150
+ 2,
151
);
152
const backticks = "`".repeat(maxBackticks + 1);
153
0 commit comments