diff options
author | Adam Chlipala <adam@chlipala.net> | 2010-08-10 14:52:33 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2010-08-10 14:52:33 -0400 |
commit | 55a669bc95cb2831f5a4fc084d2aa828863a1f07 (patch) | |
tree | 47b4a09d2970f105ce284d3bc687356fbb48b63b /tests | |
parent | 4bc2b6c4388096c65e2b45b186722e32267948d8 (diff) |
HTML comments
Diffstat (limited to 'tests')
-rw-r--r-- | tests/xcomments.ur | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/xcomments.ur b/tests/xcomments.ur index 61a0b34b..83608ff9 100644 --- a/tests/xcomments.ur +++ b/tests/xcomments.ur @@ -4,5 +4,7 @@ fun foo () = <xml>Hi!</xml> fun main () = return <xml><body> A (* B *) C (* D (* E *) F *) D<br/> - <b>A</b> <i>(* B *) C <b>D (* E *) F {foo ()}</b></i> + <b>A</b> <i>(* B *) C <b>D (* E <!-- 7 --> *) F {foo ()}</b></i> + A <!-- B --> C <!-- D (* E *) F --> D<br/> + <b>A</b> <i><!-- B --> C <b>D <!-- E --> F {foo ()}</b></i> </body></xml> |