Styles for inline code snippets and longer, multiline blocks of code.
Wrap inline snippets of code with code
Use <table>
to create columns and rows
Multi language code highlighting for the web.
<div class="card">
<div class="card-body">
Hello, world!
</div>
</div><!-- card -->
.hljs {
background-color: $code-bg;
padding: $code-padding-x $code-padding-y;
}
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});