()
| 681 | Applies highlighting to all <pre><code>..</code></pre> blocks on a page. |
| 682 | */ |
| 683 | function initHighlighting() { |
| 684 | if (initHighlighting.called) |
| 685 | return; |
| 686 | initHighlighting.called = true; |
| 687 | var pres = document.getElementsByTagName('pre'); |
| 688 | for (var i = 0; i < pres.length; i++) { |
| 689 | var code = findCode(pres[i]); |
| 690 | if (code) |
| 691 | highlightBlock(code, hljs.tabReplace); |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | /* |
| 696 | Attaches highlighting to the page load event. |
nothing calls this directly
no test coverage detected
searching dependent graphs…