##// END OF EJS Templates
put the anchor inside the header tag...
MinRK -
Show More
@@ -517,12 +517,12 b' var IPython = (function (IPython) {'
517 517 var r = this.element.find("div.text_cell_render");
518 518 r.empty();
519 519 r.append(
520 $('<a/>')
521 .addClass('heading-link')
522 .attr('href', '#' + text)
523 .attr('name', text)
520 $('<h'+this.level+'/>')
524 521 .append(
525 $('<h'+this.level+'/>')
522 $('<a/>')
523 .addClass('heading-link')
524 .attr('href', '#' + text)
525 .attr('name', text)
526 526 .html(text)
527 527 )
528 528 );
General Comments 0
You need to be logged in to leave comments. Login now