aboutsummaryrefslogtreecommitdiff
path: root/lisp/seam-test.el
diff options
context:
space:
mode:
authorSpencer Williams <spnw@plexwave.org>2025-07-11 13:06:11 -0400
committerSpencer Williams <spnw@plexwave.org>2025-07-11 13:49:51 -0400
commitc404b1ccf1210827c4ae8625775e5bb05884cccf (patch)
tree26f3bc4df1e5badce45012482b484561b90fbb1d /lisp/seam-test.el
parentc27b640130063302f0c23e6303984fc46fc8126f (diff)
Use mustache.el for templating
Diffstat (limited to 'lisp/seam-test.el')
-rw-r--r--lisp/seam-test.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/seam-test.el b/lisp/seam-test.el
index fc4e2d4..6177907 100644
--- a/lisp/seam-test.el
+++ b/lisp/seam-test.el
@@ -326,7 +326,7 @@ notes such that they no longer link to it."
"Test that linking to a note from a public note creates a backlink."
(should
(identity
- (seam-test-with-notes ((seam-export-template-string "{{backlinks}}"))
+ (seam-test-with-notes ((seam-export-template-string "{{{backlinks}}}"))
((foo "foo" "public")
(bar "bar" "public"))
(with-current-buffer foo
@@ -341,7 +341,7 @@ backlink."
(should
(equal
""
- (seam-test-with-notes ((seam-export-template-string "{{backlinks}}"))
+ (seam-test-with-notes ((seam-export-template-string "{{{backlinks}}}"))
((foo "foo")
(bar "bar" "public"))
(with-current-buffer foo
@@ -355,7 +355,7 @@ backlink."
(should
(equal
""
- (seam-test-with-notes ((seam-export-template-string "{{backlinks}}"))
+ (seam-test-with-notes ((seam-export-template-string "{{{backlinks}}}"))
((foo "foo" "public")
(bar "bar" "public"))
(with-current-buffer foo
@@ -372,7 +372,7 @@ backlink."
(should
(equal
""
- (seam-test-with-notes ((seam-export-template-string "{{backlinks}}"))
+ (seam-test-with-notes ((seam-export-template-string "{{{backlinks}}}"))
((foo "foo" "public" nil t)
(bar "bar" "public"))
(with-current-buffer foo
@@ -510,7 +510,7 @@ it."
(should
(equal
"&ldquo;quotes&rdquo; &amp; &lt;symbols&gt;\n"
- (seam-test-with-notes ((seam-export-template-string "{{title}}"))
+ (seam-test-with-notes ((seam-export-template-string "{{{title}}}"))
((note "\"quotes\" & <symbols>" "public"))
(seam-export--file-string "html/quotes-symbols.html")))))