summaryrefslogtreecommitdiff
path: root/javascript/videojs/docs/legacy-docs/api/js/highlight-syntax.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/videojs/docs/legacy-docs/api/js/highlight-syntax.js')
-rw-r--r--javascript/videojs/docs/legacy-docs/api/js/highlight-syntax.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/javascript/videojs/docs/legacy-docs/api/js/highlight-syntax.js b/javascript/videojs/docs/legacy-docs/api/js/highlight-syntax.js
deleted file mode 100644
index 2fc9370..0000000
--- a/javascript/videojs/docs/legacy-docs/api/js/highlight-syntax.js
+++ /dev/null
@@ -1,31 +0,0 @@
-BCLSHighlighter = (function(hljs) {
- var codeBlocks = document.querySelectorAll('pre>code'),
- i,
- iMax,
- txt,
- reLT = new RegExp('<', 'g'),
- reGT = new RegExp('>;', 'g');
-
- /**
- * tests for all the ways a variable might be undefined or not have a value
- * @param {*} x the variable to test
- * @return {Boolean} true if variable is defined and has a value
- */
- function isDefined(x) {
- if (x === '' || x === null || x === undefined || x === NaN) {
- return false;
- }
- return true;
- };
-
- if (isDefined(codeBlocks)) {
- iMax = codeBlocks.length;
- for (i = 0; i < iMax; i++) {
- txt = codeBlocks[i].innerHTML.toString();
- txt = txt.replace(reLT, '&lt;');
- txt = txt.replace(reGT, '&gt;');
- codeBlocks[i].innerHTML = txt;
- hljs.highlightBlock(codeBlocks[i]);
- }
- }
-})(hljs); \ No newline at end of file