test/data/users-guide/percentline_example.result in erubis-2.6.6 vs test/data/users-guide/percentline_example.result in erubis-2.7.0
- old
+ new
@@ -1,7 +1,9 @@
$ erubis -xE PercentLine percentline-example.rhtml
-_buf = ''; for item in list
- _buf << ' <b>'; _buf << ( item ).to_s; _buf << '</b>
+_buf = ''; _buf << '<ul>
+'; for item in list
+ _buf << ' <li>'; _buf << ( item ).to_s; _buf << '</li>
'; end
- _buf << '% lines with \'%%\'
+ _buf << '</ul>
+% lines with \'%%\'
';
_buf.to_s