mirror of https://github.com/pixelfed/pixelfed.git
Merge pull request #347 from lamby/dont-double-escape-caption-in-atom-feed
Don't double-escape caption in Atom feed.
This commit is contained in:
commit
f46b23aa94
|
@ -26,16 +26,16 @@
|
|||
<link rel="self" type="application/atom+xml" href="{{$profile->permalink('.atom')}}"/>
|
||||
@foreach($items as $item)
|
||||
<entry>
|
||||
<title><![CDATA[{{ $item->caption }}]]></title>
|
||||
<title>{{ $item->caption }}</title>
|
||||
<link rel="alternate" href="{{ $item->url() }}" />
|
||||
<id>{{ url($item->id) }}</id>
|
||||
<author>
|
||||
<name> <![CDATA[{{ $item->profile->username }}]]></name>
|
||||
</author>
|
||||
<summary type="html">
|
||||
<![CDATA[{!! $item->caption !!}]]>
|
||||
{{ $item->caption }}
|
||||
</summary>
|
||||
<updated>{{ $item->updated_at->toAtomString() }}</updated>
|
||||
</entry>
|
||||
@endforeach
|
||||
</feed>
|
||||
</feed>
|
||||
|
|
Loading…
Reference in New Issue