diff options
author | Chris Smith <chris.eureka@jalakai.co.uk> | 2008-03-12 01:02:48 +0100 |
---|---|---|
committer | Chris Smith <chris.eureka@jalakai.co.uk> | 2008-03-12 01:02:48 +0100 |
commit | 41624b31db8cad77ed1ee250631162613a1ca22b (patch) | |
tree | 1e6dc1b203282a0adffe4a3415e82d874158ba65 /_test/cases/inc/parser/parser_quote.test.php | |
parent | 630e442cc677b713c16df6060adfe9107160ff6b (diff) | |
download | rpg-41624b31db8cad77ed1ee250631162613a1ca22b.tar.gz rpg-41624b31db8cad77ed1ee250631162613a1ca22b.tar.bz2 |
Update handler to merge consecutive 'cdata' instructions (incl. test case updates)
This patch is the second in the series designed to make it easier for DW to allow
plugins to modify the standard handling of line-breaks.
Like the first this patch doesn't alter line-break behaviour at all, but introduces
improvements that reduce to a minimum the number of 'cdata' instructions generated
by the handler.
darcs-hash:20080312000248-f07c6-f6ce1b5aac43a52cbe31215c517b048679ae20a7.gz
Diffstat (limited to '_test/cases/inc/parser/parser_quote.test.php')
-rw-r--r-- | _test/cases/inc/parser/parser_quote.test.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/_test/cases/inc/parser/parser_quote.test.php b/_test/cases/inc/parser/parser_quote.test.php index e216604fc..5d5a7e2a5 100644 --- a/_test/cases/inc/parser/parser_quote.test.php +++ b/_test/cases/inc/parser/parser_quote.test.php @@ -86,8 +86,7 @@ class TestOfDoku_Parser_Quote extends TestOfDoku_Parser { array('quote_close',array()), array('quote_close',array()), array('p_open',array()), - array('cdata',array("klm")), - array('cdata',array(DOKU_PARSER_EOL)), + array('cdata',array("klm".DOKU_PARSER_EOL)), array('p_close',array()), array('document_end',array()), |