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

@ -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';
% } #=

View File

@ -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';
% } #=