Fix escaping in text file
This commit is contained in:
parent
6ceb26ee8f
commit
65d9ec84e5
|
@ -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';
|
||||
% } #=
|
||||
|
|
|
@ -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';
|
||||
% } #=
|
||||
|
|
Loading…
Reference in a new issue