Skip to content

Commit b0221a5

Browse files
committed
Try and end the highlights process after we are done with it
1 parent 9d74487 commit b0221a5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

htmlify.p6

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -999,6 +999,11 @@ sub highlight-code-blocks(:$no-proc-async = False) {
999999
}
10001000
$html;
10011001
}
1002+
if !$no-highlight and $proc.started {
1003+
say "Stopping highlights worker";
1004+
$proc.print(0x3.chr);
1005+
}
1006+
10021007
}
10031008

10041009
#| Determine path to source POD from the POD object's url attribute

0 commit comments

Comments
 (0)