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 %# will prevent some editors from auto-indenting the next line, hence
%# the '#=' comment at the end of some lines. %# the '#=' comment at the end of some lines.
% if (keys %{$remark}) { #= % if (keys %{$remark}) { #=
%= $remark->{'id' }; %= $remark->{'id' };
%= $remark->{'date' }; %= $remark->{'date' };
%= $remark->{'author'} . "\n"; %== $remark->{'author'} . "\n";
%= $remark->{'body' }; %== $remark->{'body' };
% } else { #= % } else { #=
%= stash 'error'; %= stash 'error';
% } #= % } #=

View File

@ -3,11 +3,11 @@
%# will prevent some editors from auto-indenting the next line, hence %# will prevent some editors from auto-indenting the next line, hence
%# the '#=' comment at the end of some lines. %# the '#=' comment at the end of some lines.
% if (keys %{$thread}) { #= % if (keys %{$thread}) { #=
%= $thread->{'id' }; %= $thread->{'id' };
%= $thread->{'title' }; %= $thread->{'date' };
%= $thread->{'date' }; %== $thread->{'title' };
%= $thread->{'author'} . "\n"; %== $thread->{'author'} . "\n";
%= $thread->{'body' }; %== $thread->{'body' };
% } else { #= % } else { #=
%= stash 'error'; %= stash 'error';
% } #= % } #=