Fix blog authors not defined in authors.yml warnings #297
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR resolves Docusaurus warnings about blog authors not being defined in a centralized
authors.yml
file. Previously, all blog posts were using inline author definitions which generated 33 warnings during build.Changes Made
Created
blog/authors.yml
with proper author definitions:defang_team
: Defang Team with company brandinglinda_lee
: Linda Lee (Software Engineering Intern at Defang)raphael_titsworth_morin
: Raphaël Titsworth-Morin (Software Engineer at Defang)Updated all blog posts to reference authors by key instead of inline definitions:
author: Author Name
toauthors: author_key
in frontmatterauthors: defang_team
authors: linda_lee
authors: raphael_titsworth_morin
Benefits
The changes are minimal and focused, updating only the author references without affecting any other blog content or functionality.
Original prompt
This section details on the original issue you should resolve
<issue_title>Authors are not defined in authors.yml</issue_title>
<issue_description>[WARNING] Some blog authors used in "2024-03-28-slackbot-sample.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you want to allow inline blog authors, you can disable this message by setting onInlineAuthors: 'ignore' in your blog plugin options.
More info at https://docusaurus.io/docs/blog
[WARNING] Some blog authors used in "2024-06-01-june-product-updates.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you want to allow inline blog authors, you can disable this message by setting onInlineAuthors: 'ignore' in your blog plugin options.
More info at https://docusaurus.io/docs/blog
[WARNING] Some blog authors used in "2024-07-01-july-product-updates.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you want to allow inline blog authors, you can disable this message by setting onInlineAuthors: 'ignore' in your blog plugin options.
More info at https://docusaurus.io/docs/blog
[WARNING] Some blog authors used in "2024-07-31-july-product-updates-2.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you want to allow inline blog authors, you can disable this message by setting onInlineAuthors: 'ignore' in your blog plugin options.
More info at https://docusaurus.io/docs/blog
[WARNING] Some blog authors used in "2024-09-30-september-product-updates.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you want to allow inline blog authors, you can disable this message by setting onInlineAuthors: 'ignore' in your blog plugin options.
More info at https://docusaurus.io/docs/blog
[WARNING] Some blog authors used in "2024-11-12-hard-lessons-from-hardware.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you want to allow inline blog authors, you can disable this message by setting onInlineAuthors: 'ignore' in your blog plugin options.
More info at https://docusaurus.io/docs/blog
[WARNING] Some blog authors used in "2024-11-13-october-product-updates.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you want to allow inline blog authors, you can disable this message by setting onInlineAuthors: 'ignore' in your blog plugin options.
More info at https://docusaurus.io/docs/blog
[WARNING] Some blog authors used in "2024-12-04-launch-week.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you want to allow inline blog authors, you can disable this message by setting onInlineAuthors: 'ignore' in your blog plugin options.
More info at https://docusaurus.io/docs/blog
[WARNING] Some blog authors used in "2024-12-11-product-hunt.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you want to allow inline blog authors, you can disable this message by setting onInlineAuthors: 'ignore' in your blog plugin options.
More info at https://docusaurus.io/docs/blog
[WARNING] Some blog authors used in "2025-02-07-january-product-updates.md" are not defined in "authors.yml":
Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication.
But if you...
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.