aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Court`es2006-07-03 12:55:26 +0000
committerLudovic Court`es2006-07-03 12:55:26 +0000
commitf2fc615dc9afa3897743a86051c4391a3182d00f (patch)
treeefbdf020cda0caaaab1e4e0ffdacea7b3ad913ad
parentd382a90df7d307ff30382a59c1f48b35b1f6ff51 (diff)
downloadskribilo-f2fc615dc9afa3897743a86051c4391a3182d00f.tar.gz
skribilo-f2fc615dc9afa3897743a86051c4391a3182d00f.tar.lz
skribilo-f2fc615dc9afa3897743a86051c4391a3182d00f.zip
outline: Fixed the regexps of the inline markup for `tt' and `q'.
* src/guile/skribilo/reader/outline.scm (%inline-markup): Fixed the regexps for `tt' and `q' so that these markups can occur multiple times per line. git-archimport-id: lcourtes@laas.fr--2005-libre/skribilo--devo--1.2--patch-2
-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)