()
| 765 | } |
| 766 | |
| 767 | function insertLinks() { |
| 768 | $('h2').each(function() { |
| 769 | const aId = $(this).attr('id'); |
| 770 | const text = $(this).text(); |
| 771 | const line = `<a href="#${aId}" name="${aId}">#</a>${text}`; |
| 772 | $(this).html(line); |
| 773 | }); |
| 774 | } |
| 775 | |
| 776 | function unindentBanner() { |
| 777 | const montyImg = $('img').first(); |