about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/guile/skribilo/reader/outline.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guile/skribilo/reader/outline.scm b/src/guile/skribilo/reader/outline.scm
index 4b7d00d..b870945 100644
--- a/src/guile/skribilo/reader/outline.scm
+++ b/src/guile/skribilo/reader/outline.scm
@@ -133,13 +133,13 @@ line or a line comment."
 		(match:substring m 1)
 		(match:suffix m)
 		(lambda (body) `(bold ,body)))))
-    ("``(([^`]|[^'])+)''" .
+    ("``(([^`^'])+)''" .
      ,(lambda (m)
 	(values (match:prefix m)
 		(match:substring m 1)
 		(match:suffix m)
 		(lambda (body) `(q ,body)))))
-    ("`(([^`]|[^'])+)'" .
+    ("`(([^`^'])+)'" .
      ,(lambda (m)
 	(values (match:prefix m)
 		(match:substring m 1)