We have included highlight.js to support code highlighting
here the example of javascript code
$('#myModal').on('shown.bs.modal', function () {
$('#myInput').focus()
})
and css code
@keyframes bounceIn {
0% {
transform: scale(0.1);
opacity: 0;
}
60% {
transform: scale(1.2);
opacity: 1;
}
100% {
transform: scale(1);
}
}
.animated {
-webkit-animation-duration: 1000ms;
animation-duration: 1000ms;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
and +20 languages more.