-
-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] Add support for multi authors taxonomies #98
Conversation
feat(authors): add link docs: add authors
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The author field in RSS file is not updated.
For example, in /categories/tests/index.xml
<item>
<title>Author single test</title>
<link>http://localhost:1313/author-single-tests/</link>
<pubDate>Mon, 07 Jun 2021 08:46:10 +0100</pubDate>
<author>PCloud</author>
<guid>http://localhost:1313/author-single-tests/</guid>
<description>
<![CDATA[ <p>Just for authors test.</p> ]]>
</description>
</item>
Items have incorrect author.
多作者的情况下rss该怎么处理,当时没的搜到相关内容,所以就按默认的处理了,你这样有了解相关的东西吗? 晚点我再研究下。 或者以 author 作为第一优先级,不存在则取第一个authors,最后取 config的作者。 或者以
方式处理。 |
RSS 标准中本不包含
但不同阅读器可能对于这个格式会有不同的处理方式,可能只显示第一个或最后一个,这个就交给用户和阅读器来做选择了。 |
好的 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是否可以统一将 author 页面的 RelPermalink
设置为作者的 id?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
feat: add style for authors page
- Simplify author configuration - Add simplified Chinese author test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
大功告成!
你看看还有没有什么问题,或者需要修改和补充的,然后就可以合并了 😊
可以 squash 下后再合并,然后就没什么问题了。 |
feat: add multi authors
feat(authors): add link
docs: add authors
with feature: #96