calepin 0.0.18

A Rust CLI for preprocessing Typst documents with executable code chunks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
{% if site.stylesheet %}
    <link rel="stylesheet" href="{{ site.stylesheet }}">
{% else %}
{% for style in styles -%}
    <style>
{{ style.css }}
    </style>
{% endfor -%}
{% endif %}
{% if site.pagefind %}
    <link rel="stylesheet" href="{{ site.pagefind.css }}">
    <script src="{{ site.pagefind.js }}" type="module"></script>
{% endif %}