-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Add .yml file extension to docfx.json file #51189
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
Conversation
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.
Pull request overview
This pull request updates file path patterns in docfx.json to include both .md and .yml file extensions using the {md,yml} brace expansion syntax. This ensures that metadata attributes apply to both Markdown documentation files and YAML files throughout the repository.
Changes:
- Extended file patterns in
social_image_url,feedback_product_url,ms.service,ms.subservice,author,ms.author,titleSuffix,no-loc, andms.update-cyclesections to include.ymlfiles - Reordered some entries in
social_image_urlandfeedback_product_urlfor better organization
Comments suppressed due to low confidence (2)
docfx.json:324
- This pattern uses
*.*while other patterns in the same file have been updated to use{md,yml}. For consistency, this should be updated todocs/csharp/**/*.{md,yml}: "csharp"` to match the pattern used elsewhere in this PR.
"docs/csharp/**/*.*": "csharp",
docfx.json:321
- These patterns in the
dev_langssection only match.mdfiles. For consistency with the changes in this PR, they should be updated to include.ymlfiles using the pattern{md,yml}.
"docs/fsharp/**/**.md": [
"fsharp"
],
"docs/visual-basic/**/**.md": [
"vb"
]
Co-authored-by: Copilot <[email protected]>
BillWagner
left a comment
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.
This LGTM @gewarren
Let's ![]()
Per ms.subservice meeting today.