Skip to content

Commit bc00185

Browse files
authored
Fix the broken links to the latest valid links (microsoft#184131)
1 parent 16d3c2d commit bc00185

File tree

1 file changed

+1
-1
lines changed
  • extensions/notebook-renderers/src

1 file changed

+1
-1
lines changed

extensions/notebook-renderers/src/ansi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function handleANSIOutput(text: string, linkOptions: LinkOptions): HTMLSp
2626
let sequenceFound: boolean = false;
2727

2828
// Potentially an ANSI escape sequence.
29-
// See http://ascii-table.com/ansi-escape-sequences.php & https://en.wikipedia.org/wiki/ANSI_escape_code
29+
// See https://www.asciitable.com/ansi-escape-sequences.php & https://en.wikipedia.org/wiki/ANSI_escape_code
3030
if (text.charCodeAt(currentPos) === 27 && text.charAt(currentPos + 1) === '[') {
3131

3232
const startPos: number = currentPos;

0 commit comments

Comments
 (0)