Source BlocksΒΆ

The source block are the part of html that will be inserted in the template for each file

The default source blocks are:

<!-- for js files -->
<script type="text/javascript" src="{}"></script>

<!-- for css files -->
<link rel="stylesheet" href="{}">

you can map your source block with the extension name and the block text

blocks:
  img: '<img src="{}" alt="void">'