diff options
author | Alan Pearce | 2017-05-03 10:03:46 +0200 |
---|---|---|
committer | Alan Pearce | 2017-05-03 10:03:46 +0200 |
commit | 1e160edd4ce6c7fa1181cbe311594b9b6d819e1a (patch) | |
tree | a285a3a002dc6d2632945585bbc6c6c1dc4565b8 /content/post/cedit-and-paredit.md | |
parent | 0f1c6aefc239a13f86a8222ab66fc3f213c4888e (diff) | |
download | website-1e160edd4ce6c7fa1181cbe311594b9b6d819e1a.tar.lz website-1e160edd4ce6c7fa1181cbe311594b9b6d819e1a.tar.zst website-1e160edd4ce6c7fa1181cbe311594b9b6d819e1a.zip |
Update shortcode syntax
Diffstat (limited to 'content/post/cedit-and-paredit.md')
-rw-r--r-- | content/post/cedit-and-paredit.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/post/cedit-and-paredit.md b/content/post/cedit-and-paredit.md index 09ed176..a8b65a1 100644 --- a/content/post/cedit-and-paredit.md +++ b/content/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. |