@@ -2391,7 +2391,7 @@ function insertTableOfContents(s, protect, exposer) {
2391
2391
// Gather headers for table of contents (TOC). We
2392
2392
// accumulate a long and short TOC and then choose which
2393
2393
// to insert at the end.
2394
- var fullTOC = '<a href="#" class="tocTop">(Top)</a><br/>\n' ;
2394
+ var fullTOC = '<a href="#" class="tocTop" target="_self" >(Top)</a><br/>\n' ;
2395
2395
var shortTOC = '' ;
2396
2396
2397
2397
// names of parent sections
@@ -2443,10 +2443,10 @@ function insertTableOfContents(s, protect, exposer) {
2443
2443
// Only insert for the first three levels
2444
2444
if ( level <= tocDepth ) {
2445
2445
// Indent and append (the Array() call generates spaces)
2446
- fullTOC += Array ( level ) . join ( ' ' ) + '<a href="#' + name + '" class="level' + level + '"><span class="tocNumber">' + number + ' </span>' + text + '</a><br/>\n' ;
2446
+ fullTOC += Array ( level ) . join ( ' ' ) + '<a href="#' + name + '" target="_self" class="level' + level + '"><span class="tocNumber">' + number + ' </span>' + text + '</a><br/>\n' ;
2447
2447
2448
2448
if ( level === 1 ) {
2449
- shortTOC += ' · <a href="#' + name + '">' + text + '</a>' ;
2449
+ shortTOC += ' · <a href="#' + name + '" target="_self" >' + text + '</a>' ;
2450
2450
} else {
2451
2451
++ numAboveLevel1 ;
2452
2452
}
@@ -2939,7 +2939,7 @@ function markdeepToHTML(str, elementMode) {
2939
2939
endNoteTable [ symbolicName ] = endNoteCount ;
2940
2940
}
2941
2941
2942
- return '<sup><a ' + protect ( 'href="#endnote-' + symbolicName + '"' ) +
2942
+ return '<sup><a ' + protect ( 'href="#endnote-' + symbolicName + '" target="_self" ' ) +
2943
2943
'>' + endNoteTable [ symbolicName ] + '</a></sup>' ;
2944
2944
}
2945
2945
str = str . rp ( / [ \t ] * \[ \^ ( [ ^ \] \n \t ] + ) \] (? ! : ) / g, endNote ) ;
@@ -2963,7 +2963,7 @@ function markdeepToHTML(str, elementMode) {
2963
2963
for ( var i = 0 ; i < symbolicNameList . length ; ++ i ) {
2964
2964
// Strip spaces and # signs
2965
2965
var name = symbolicNameList [ i ] . rp ( / # | / g, '' ) ;
2966
- s += entag ( 'a' , name , protect ( 'href="#citation-' + name . toLowerCase ( ) + '"' ) ) ;
2966
+ s += entag ( 'a' , name , protect ( 'href="#citation-' + name . toLowerCase ( ) + '" target="_self" ' ) ) ;
2967
2967
if ( i < symbolicNameList . length - 1 ) { s += ', ' ; }
2968
2968
}
2969
2969
return s + ']' ;
@@ -3346,7 +3346,7 @@ function markdeepToHTML(str, elementMode) {
3346
3346
if ( allHeaders ) {
3347
3347
allHeaders . forEach ( function ( header ) {
3348
3348
header = removeHTMLTags ( header . ss ( 4 , header . length - 5 ) ) . trim ( ) ;
3349
- var link = '<a ' + protect ( 'href="#' + mangle ( header ) + '"' ) + '>' ;
3349
+ var link = '<a ' + protect ( 'href="#' + mangle ( header ) + '" target="_self" ' ) + '>' ;
3350
3350
3351
3351
var sectionExp = '(' + keyword ( 'section' ) + '|' + keyword ( 'subsection' ) + '|' + keyword ( 'chapter' ) + ')' ;
3352
3352
var headerExp = '(\\b' + escapeRegExpCharacters ( header ) + ')' ;
@@ -3373,7 +3373,7 @@ function markdeepToHTML(str, elementMode) {
3373
3373
3374
3374
if ( t ) {
3375
3375
t . used = true ;
3376
- return '<a ' + protect ( 'href="#' + ref + '"' ) + '>' + _type + ' ' + t . number + maybeShowLabel ( _ref ) + '</a>' ;
3376
+ return '<a ' + protect ( 'href="#' + ref + '" target="_self" ' ) + '>' + _type + ' ' + t . number + maybeShowLabel ( _ref ) + '</a>' ;
3377
3377
} else {
3378
3378
console . log ( "Reference to undefined '" + type + " [" + _ref + "]'" ) ;
3379
3379
return _type + ' ?' ;
@@ -3389,8 +3389,8 @@ function markdeepToHTML(str, elementMode) {
3389
3389
url = url . ss ( 0 , url . length - 1 ) ;
3390
3390
extra = '.' ;
3391
3391
}
3392
- // svn and perforce URLs are not hyperlinked. All others (http/https/ftp/mailto/tel, etc. are)
3393
- return '<a ' + ( ( url [ 0 ] !== 's' && url [ 0 ] !== 'p' ) ? protect ( 'href="' + url + '" class="url"' ) : '' ) + '>' + url + '</a>' + extra ;
3392
+ // svn, perforce, and quadplay URLs are not hyperlinked. All others (http/https/ftp/mailto/tel, etc. are)
3393
+ return '<a ' + ( ! ( url . startsWith ( 'svn' ) || url . startsWith ( 'p4' ) || url . startsWith ( 'quad' ) ) ? protect ( 'href="' + url + '" class="url"' ) : '' ) + '>' + url + '</a>' + extra ;
3394
3394
} ) ;
3395
3395
3396
3396
if ( ! elementMode ) {
@@ -3437,7 +3437,7 @@ function markdeepToHTML(str, elementMode) {
3437
3437
function ( match , prefix , ref ) {
3438
3438
var link = toc [ ref . toLowerCase ( ) . trim ( ) ] ;
3439
3439
if ( link ) {
3440
- return prefix + ' <a ' + protect ( 'href="#toc' + link + '"' ) + '>' + link + '</a>' ;
3440
+ return prefix + ' <a ' + protect ( 'href="#toc' + link + '" target="_self" ' ) + '>' + link + '</a>' ;
3441
3441
} else {
3442
3442
return prefix + ' ?' ;
3443
3443
}
@@ -3508,7 +3508,7 @@ function markdeepToHTML(str, elementMode) {
3508
3508
// They may also have an extra syntax-highlighting span
3509
3509
str = str . rp ( / < c o d e (? ! i g n o r e ) \b [ ^ < > \n ] * > ( < s p a n c l a s s = " [ a - z A - Z \- _ 0 - 9 ] + " > ) ? ( [ A - Z a - z _ ] [ A - Z a - z _ \. 0 - 9 : \- > ] * ) ( < \/ s p a n > ) ? ( \( \) | \[ \] ) ? < \/ c o d e > / g, function ( match , syntaxHighlight , name , syntaxHighlightEnd , next ) {
3510
3510
var linkName = name + ( next ? ( next [ 0 ] === '(' ? '-fcn' : next [ 0 ] === '[' ? '-array' : next [ 0 ] ) : '' ) ;
3511
- return apiDefinitionCount [ linkName ] ? entag ( 'a' , match , 'href="#apiDefinition-' + linkName + '"' ) : match ;
3511
+ return apiDefinitionCount [ linkName ] ? entag ( 'a' , match , 'href="#apiDefinition-' + linkName + '" target="_self" ' ) : match ;
3512
3512
} ) ;
3513
3513
}
3514
3514
@@ -4864,9 +4864,6 @@ function processInsertCommands(nodeArray, sourceArray, insertDoneCallback) {
4864
4864
//
4865
4865
// A url is relative if it does not begin with '^[a-z]{3,6}://|^#'
4866
4866
4867
- // Protect code fences
4868
- // TODO
4869
-
4870
4867
function makeAbsoluteURL ( url ) {
4871
4868
return ( / ^ [ a - z ] { 3 , 6 } : \/ \/ / . test ( url ) ) ?
4872
4869
url :
@@ -5360,6 +5357,13 @@ if (! window.alreadyProcessedMarkdeep) {
5360
5357
// to appear exceedingly narrow on phones in the Chrome mobile preview.
5361
5358
// https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag
5362
5359
var META = '<meta charset="UTF-8"><meta http-equiv="content-type" content="text/html;charset=UTF-8"><meta name="viewport" content="width=600, initial-scale=1">' ;
5360
+ // Add a base tag if embedded in an <iframe srcdoc=""> inline
5361
+ // (not an <iframe src="">). This allows # links generated by
5362
+ // the table of contents to work correctly.
5363
+ if ( document . location . href === 'about:srcdoc' ) {
5364
+ META += '<base href="about:srcdoc"><base target="_blank">' ;
5365
+ }
5366
+
5363
5367
var head = META + BODY_STYLESHEET + STYLESHEET + sectionNumberingStylesheet ( ) + HIGHLIGHT_STYLESHEET ;
5364
5368
if ( longDocument ) {
5365
5369
// Add more spacing before the title in a long document
0 commit comments