Fix escaping in text file

This commit is contained in:
swag 2023-06-27 02:57:24 -04:00
parent 6ceb26ee8f
commit 65d9ec84e5
2 changed files with 9 additions and 9 deletions

View File

@ -5,8 +5,8 @@
% if (keys %{$remark}) { #=
%= $remark->{'id' };
%= $remark->{'date' };
%= $remark->{'author'} . "\n";
%= $remark->{'body' };
%== $remark->{'author'} . "\n";
%== $remark->{'body' };
% } else { #=
%= stash 'error';
% } #=

View File

@ -4,10 +4,10 @@
%# the '#=' comment at the end of some lines.
% if (keys %{$thread}) { #=
%= $thread->{'id' };
%= $thread->{'title' };
%= $thread->{'date' };
%= $thread->{'author'} . "\n";
%= $thread->{'body' };
%== $thread->{'title' };
%== $thread->{'author'} . "\n";
%== $thread->{'body' };
% } else { #=
%= stash 'error';
% } #=