This repository was archived by the owner on Jun 27, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 586
586
587
587
function formatCompilerOutput ( text ) {
588
588
return ansi2html ( text ) . replace ( / \[ ( - - e x p l a i n ) ? ( E \d \d \d \d ) \] / g, function ( text , prefix , code ) {
589
- return "[<a href=https://doc.rust-lang.org/error-index.html#" + code + " target=_new >" + ( prefix ? prefix : "" ) + code + "</a>]" ;
589
+ return "[<a href=https://doc.rust-lang.org/error-index.html#" + code + " target=_blank >" + ( prefix ? prefix : "" ) + code + "</a>]" ;
590
590
} ) . replace ( / r u n ` r u s t c - - e x p l a i n ( E \d \d \d \d ) ` t o s e e a d e t a i l e d e x p l a n a t i o n / g, function ( text , code ) {
591
- return "see the <a href=https://doc.rust-lang.org/error-index.html#" + code + " target=_new >detailed explanation for " + code + "</a>" ;
591
+ return "see the <a href=https://doc.rust-lang.org/error-index.html#" + code + " target=_blank >detailed explanation for " + code + "</a>" ;
592
592
} ) . replace ( / & l t ; a n o n & g t ; : ( \d + ) $ / mg, jumpToLine ) // panicked at 'foo', $&
593
593
. replace ( / ^ & l t ; a n o n & g t ; : ( \d + ) : ( \d + ) : \s + ( \d + ) : ( \d + ) / mg, jumpToRegion )
594
594
. replace ( / ^ & l t ; a n o n & g t ; : ( \d + ) / mg, jumpToLine )
You can’t perform that action at this time.
0 commit comments