()
| 491 | } |
| 492 | |
| 493 | function initHighlighting() { |
| 494 | if (initHighlighting.called) |
| 495 | return; |
| 496 | initHighlighting.called = true; |
| 497 | initialize(); |
| 498 | var pres = document.getElementsByTagName('pre'); |
| 499 | for (var i = 0; i < pres.length; i++) { |
| 500 | var code = findCode(pres[i]); |
| 501 | if (code) |
| 502 | highlightBlock(code, hljs.tabReplace); |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | function initHighlightingOnLoad() { |
| 507 | var original_arguments = arguments; |
nothing calls this directly
no test coverage detected