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
Since Atom feed is extended from XML, an author field should be something human readable. This plugin, however, return an object-like string in this field.
I can't find an example with twitter handle, just a feeling.
<feed>
<author>
<name>PinGu</name> # Not following _data/authors.yml
</author>
<entry>
<author>
<name>{"twitter"=>"pinguotaku", "picture"=>"/images/avatar.png", "url"=>"http://example.org/"}</name> # object-like string with all value
</author>
</entry>
</feed>
<feed>
<author>
<name>PinGu</name> # Still not following _data/authors.yml
</author>
<entry>
<author>
<name>Pin</name> # Only name field, others are missing
</author>
</entry>
</feed>
The text was updated successfully, but these errors were encountered:
pingu8007
added a commit
to pingu8007/jekyll-feed
that referenced
this issue
Feb 17, 2020
Since Atom feed is extended from XML, an author field should be something human readable. This plugin, however, return an object-like string in this field.
I can't find an example with twitter handle, just a feeling.
I have following plugin enabled:
Input
Expected output
I don't know which is correct but it should be a text at least.
or
Actual output
Workaround
Add key
name
to authorand the result will be
The text was updated successfully, but these errors were encountered: