Skip to content

Commit

Permalink
Fix the broken links to the latest valid links (#184131)
Browse files Browse the repository at this point in the history
  • Loading branch information
weartist committed Jan 29, 2024
1 parent 16d3c2d commit bc00185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/notebook-renderers/src/ansi.ts
Expand Up @@ -26,7 +26,7 @@ export function handleANSIOutput(text: string, linkOptions: LinkOptions): HTMLSp
let sequenceFound: boolean = false;

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

const startPos: number = currentPos;
Expand Down

0 comments on commit bc00185

Please sign in to comment.