Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 781 Bytes

File metadata and controls

26 lines (17 loc) · 781 Bytes

With the help of highlight.js We can highlight more than 150 languages.

To be precise, we support all languages supported by highlight.js 10.5.0.

Note that fenced code blocks with a hardcoded language are rendered at build time and don't need the library to be loaded on the client side.

Here is a quick example :

HTML (with inline css and javascript)

<!DOCTYPE html>
<title>Title</title>

<style>body {width: 500px;}</style>

<script type="application/javascript">
  function $init() {return true;}
</script>

<body>
  <p checked class="title" id='title'>Title</p>
  <!-- here goes the rest of the page -->
</body>

See more examples of supported languages