=head1 TITLE Tweak POD's CEE =head1 VERSION Maintainer: Simon Cozens Date: 24 Sep 2000 Mailing List: perl6-language@perl.org Number: 280 Version: 1 Status: Developing =head1 ABSTRACT CEE is not as intuitive as it could be. =head1 DESCRIPTION In Perl 5.6.0, we altered the behaviour of the CEE construct in POD, so that you could say CE ... EE> to avoid the problem that C<< $foo->bar >> would be ended by the arrow. However, this isn't too Perlish, and there's an easier solution; give the CEE the same semantics as a single quoted string with C. That is: =over 1 =item * Do away with the need to escape stuff inside CEE, because that stops you cutting and pasting the code. =item * Allow the use of alternate delimiters to avoid the arrow problem. C<$xyz> C/$foo->bar/ =back =head1 IMPLEMENTATION Just some tweaks to C, haha. =head1 REFERENCES None.