# New Ticket Created by  Dave Rolsky 
# Please include the string:  [perl #126742]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=126742 >


Given this code:

=begin pod

=for block :item('foo')

Bar

=end pod

dd $=pod[0];

The output is:

Pod::Block::Named $var = Pod::Block::Named.new(name => "pod", config => {}, 
contents => [Pod::Block::Named.new(name => "block", config => {:item("'foo'")}, 
contents => []), Pod::Block::Para.new(config => {}, contents => ["Bar"])])

I'd expect to have a node where $node.config<item> = 'foo'. Instead, the quotes 
are included in the value so I get $node.config<item = q{'foo'}

Reply via email to