The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

#-------------------------------------------------------------------------------
#
# File: text_block.pm
# Version: 0.1
# Author: Jeremy Wall
# Definition: This is the handler for plain text blocks in a template.
# It basically just returns the text unchanged. I made it a
# handler just in case we needed to do something to plain text
# later on.
#
#--------------------------------------------------------------------------
sub run {
return $_[0]->{Token}->{block};
}
return 1;