You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The atom feed of the blog contains the escaped HTML tags<p><strong>, I think for Feed Readers to correctly display the feed contents it the type="html" attribute would need to be added to the <summary> element in layouts/_default/section.atom.xml.
Also I would like to suggest, to include the full post content in the in Atom feed. At the moment only the summary is in the feed and to read the complete blog post you have to leave your feed reader.
I thing the following addition to the <entry> should add the full post to the feed: <content type="html">{{ .Content | html }}</content>
The text was updated successfully, but these errors were encountered:
The atom feed of the blog contains the escaped HTML tags
<p><strong>
, I think for Feed Readers to correctly display the feed contents it thetype="html"
attribute would need to be added to the<summary>
element in layouts/_default/section.atom.xml.Also I would like to suggest, to include the full post content in the in Atom feed. At the moment only the summary is in the feed and to read the complete blog post you have to leave your feed reader.
I thing the following addition to the
<entry>
should add the full post to the feed:<content type="html">{{ .Content | html }}</content>
The text was updated successfully, but these errors were encountered: