Sha256: be1cfdc131e316aaa68fe21291b9d0cdea13f8e9d7c304448e5e44ab6221f669

Contents?: true

Size: 1 KB

Versions: 91

Compression:

Stored size: 1 KB

Contents

'use strict';

(function () {
    var configure, highlightBlock;

    configure = hljs.configure;
    // "extending" hljs.configure method
    hljs.configure = function _configure (options) {
        var size = options.highlightSizeThreshold;

        // added highlightSizeThreshold option to set maximum size
        // of processed string. Set to null if not a number
        hljs.highlightSizeThreshold = size === +size ? size : null;

        configure.call(this, options);
    };

    highlightBlock = hljs.highlightBlock;

    // "extending" hljs.highlightBlock method
    hljs.highlightBlock = function _highlightBlock (el) {
        var innerHTML = el.innerHTML;
        var size = hljs.highlightSizeThreshold;

        // check if highlightSizeThreshold is not set or element innerHTML
        // is less than set option highlightSizeThreshold
        if (size == null || size > innerHTML.length) {
            // proceed with hljs.highlightBlock
            highlightBlock.call(hljs, el);
        }
    };

})();

Version data entries

91 entries across 91 versions & 10 rubygems

Version Path
rest-ftp-daemon-1.0.9 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-1.0.8 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-1.0.7 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-1.0.6 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rswag-ui-1.2.1 vendor/assets/components/swagger-ui/lib/highlight.9.1.0.pack_extended.js
grape-swagger-ui-0.1.1 vendor/assets/javascripts/lib/highlight.9.1.0.pack_extended.js
openapi-rails-0.3.9 app/assets/javascripts/openapi/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-1.0.5 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-1.0.4 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-1.0.3 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
openapi-rails-0.3.7 app/assets/javascripts/openapi/lib/highlight.9.1.0.pack_extended.js
tower_bridge_lifts-1.0.0 web/lib/highlight.9.1.0.pack_extended.js
openapi-rails-0.3.6 app/assets/javascripts/openapi/lib/highlight.9.1.0.pack_extended.js
openapi-rails-0.3.5 app/assets/javascripts/openapi/lib/highlight.9.1.0.pack_extended.js
rswag-ui-1.2.0 vendor/assets/components/swagger-ui/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-1.0.2 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-1.0.1 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-0.502.2 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-0.502.1 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
rest-ftp-daemon-0.502.0 lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js