summary refs log tree commit diff stats
path: root/post/cedit-and-paredit.md
diff options
context:
space:
mode:
authorAlan Pearce2017-05-03 10:03:46 +0200
committerAlan Pearce2025-03-16 00:11:22 +0100
commit822b678695589da1e14f99f979c3f20099432658 (patch)
tree7922e2800e9184338353961e200737c1709c6f44 /post/cedit-and-paredit.md
parent0d8002096ef6f209733048e88b5615302aae9468 (diff)
downloadwebsite-822b678695589da1e14f99f979c3f20099432658.tar.lz
website-822b678695589da1e14f99f979c3f20099432658.tar.zst
website-822b678695589da1e14f99f979c3f20099432658.zip
Update shortcode syntax
Diffstat (limited to 'post/cedit-and-paredit.md')
-rw-r--r--post/cedit-and-paredit.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/post/cedit-and-paredit.md b/post/cedit-and-paredit.md
index 09ed176..a8b65a1 100644
--- a/post/cedit-and-paredit.md
+++ b/post/cedit-and-paredit.md
@@ -28,12 +28,12 @@ paredit.  Turns out it provides
 that control whether a space should be inserted.  So, solving the
 formatting issue turned out to be pretty simple:
 
-{{% highlight cl %}}
+{{< highlight cl >}}
 (defun ap/cedit-space-delimiter-p (endp delimiter)
 "Don't insert a space before delimiters in c-style modes"
 (not cedit-mode))
 (add-to-list 'paredit-space-for-delimiter-predicates #'ap/cedit-space-delimiter-p)
-{{% /highlight %}}
+{{< /highlight >}}
 
 Hopefully that saves someone some time if they try to use the two
 together.