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 b04d815 commit cb9d58eCopy full SHA for cb9d58e
browser/websocket/getCodeBlocks.ts
@@ -66,7 +66,9 @@ export const getCodeBlocks = async (
66
if (currentCode.isCodeBlock) {
67
const body = extractFromCodeBody(line.text, currentCode.indent);
68
if (body === null) {
69
- codeBlocks[codeBlocks.length - 1].nextLine = line;
+ if (currentCode.isCollect) {
70
+ codeBlocks[codeBlocks.length - 1].nextLine = line;
71
+ }
72
currentCode.isCodeBlock = false;
73
continue;
74
}
0 commit comments