Index: openacs-4/packages/xowiki/tcl/xowiki-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/xowiki-procs.tcl,v diff -u -r1.305 -r1.306 --- openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 30 Oct 2008 22:54:59 -0000 1.305 +++ openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 31 Oct 2008 02:01:30 -0000 1.306 @@ -1145,7 +1145,7 @@ set l ""; foreach l0 [split [lindex $source 0] \n] { append l [string map $markupmap(escape) $l0] - if {[string first \{\{ $l] > -1 && [string first \}\} $l] == -1} continue + if {[string first \{\{ $l] > -1 && [string first \}\} $l] == -1} {append l " "; continue} set l [my regsub_eval $RE(anchor) $l {my anchor "\1"} "1"] set l [my regsub_eval $RE(div) $l {my div "\1"}] set l [my regsub_eval $RE(include) $l {my include_content "\1" "\2"}]