From 65d9ec84e52d0785a09ee373cfe70de44a72904e Mon Sep 17 00:00:00 2001 From: swag Date: Tue, 27 Jun 2023 02:57:24 -0400 Subject: [PATCH] Fix escaping in text file --- templates/remark/by_id.txt.ep | 8 ++++---- templates/thread/by_id.txt.ep | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/templates/remark/by_id.txt.ep b/templates/remark/by_id.txt.ep index 7ff72b0..ea6ba10 100644 --- a/templates/remark/by_id.txt.ep +++ b/templates/remark/by_id.txt.ep @@ -3,10 +3,10 @@ %# will prevent some editors from auto-indenting the next line, hence %# the '#=' comment at the end of some lines. % if (keys %{$remark}) { #= -%= $remark->{'id' }; -%= $remark->{'date' }; -%= $remark->{'author'} . "\n"; -%= $remark->{'body' }; +%= $remark->{'id' }; +%= $remark->{'date' }; +%== $remark->{'author'} . "\n"; +%== $remark->{'body' }; % } else { #= %= stash 'error'; % } #= diff --git a/templates/thread/by_id.txt.ep b/templates/thread/by_id.txt.ep index 38289cb..1d4dc75 100644 --- a/templates/thread/by_id.txt.ep +++ b/templates/thread/by_id.txt.ep @@ -3,11 +3,11 @@ %# will prevent some editors from auto-indenting the next line, hence %# the '#=' comment at the end of some lines. % if (keys %{$thread}) { #= -%= $thread->{'id' }; -%= $thread->{'title' }; -%= $thread->{'date' }; -%= $thread->{'author'} . "\n"; -%= $thread->{'body' }; +%= $thread->{'id' }; +%= $thread->{'date' }; +%== $thread->{'title' }; +%== $thread->{'author'} . "\n"; +%== $thread->{'body' }; % } else { #= %= stash 'error'; % } #=