pekko/akka-docs-dev/_sphinx/themes/akka/static/highlightCode.js
Björn Antonsson 8dec2664fc +pro,doc #15290 Add separate doc project for release-2.3-dev
* Create sepaate project for stream and http docs.
* Make validatePullRequest run the relevant tests only.
2014-05-27 08:18:12 +02:00

13 lines
351 B
JavaScript

jQuery(document).ready(function($) {
if (typeof disableStyleCode != "undefined") {
return;
}
var a = false;
$("pre").each(function() {
if (!$(this).hasClass("prettyprint")) {
$(this).addClass("prettyprint lang-scala linenums");
a = true
}
});
if (a) { prettyPrint() }
});