mirror of
https://github.com/nextcloud/documentation.git
synced 2025-12-18 18:39:38 +07:00
18 lines
400 B
JavaScript
18 lines
400 B
JavaScript
// This use the highlight,js plugin, for more information use the link above
|
|
// https://highlightjs.org/
|
|
|
|
// TODO Use workers for better performance
|
|
|
|
define(['jquery', 'lodash', 'highlight'],
|
|
function ($, _, hljs) {
|
|
$(document).ready(function() {
|
|
'use strict';
|
|
var codeHighlight = {
|
|
init: function() {
|
|
hljs.initHighlightingOnLoad();
|
|
},
|
|
};
|
|
codeHighlight.init();
|
|
});
|
|
});
|