Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 487 Bytes

File metadata and controls

23 lines (14 loc) · 487 Bytes

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">'