Move to custom SSG instead of eleventy.

This commit is contained in:
Joshua Bemenderfer
2023-03-04 22:36:08 -05:00
parent 31bb42e985
commit f42225bd13
59 changed files with 337 additions and 1784 deletions

View File

@@ -0,0 +1,9 @@
{% macro render(node) %}
<pre
class="
my-8 p-4
bg-neutral-900 text-neutral-50 rounded-md whitespace-pre-wrap text-sm
{{ node.class }}
"
>{{ node.text | highlight(node.language) | safe }}</pre>
{% endmacro %}