- Notifications
You must be signed in to change notification settings - Fork 6.1k
Prevent tags from loc #50217
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
base: main
Are you sure you want to change the base?
Prevent tags from loc #50217
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 PR prevents certain content from being localized by converting formatting patterns. The changes systematically convert property names, technical identifiers, and XML tag references from bold formatting or escaped markup to code-formatted backticks (`), and remove trailing spaces from YAML frontmatter.
Key Changes:
- Property/identifier names: Changed from
**PropertyName**to`PropertyName`(e.g.,LiveSetting,Key,ID) - XML tag references: Changed from
\<tagName>to`<tagName>`(e.g.,<supportedRuntime>,<startup>) - YAML frontmatter: Removed trailing spaces from metadata fields like
helpviewer_keywords:,api_name:, etc.
Reviewed changes
Copilot reviewed 28 out of 28 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| docs/framework/whats-new/whats-obsolete.md | Removed trailing space in YAML; converted XML tag reference to code format |
| docs/framework/whats-new/whats-new-in-accessibility.md | Converted property names (LiveSetting, LiveRegionChanged) to code format |
| docs/framework/whats-new/index.md | Converted interface/property names and XML tags to code format |
| docs/framework/wcf/how-to-specify-client-credential-values.md | Converted attribute names (mode, clientCredentialType) to code format |
| docs/framework/wcf/diagnostics/etw/216-messagesentbytransport.md | Converted event name to code format; cleaned up formatting |
| docs/framework/unmanaged-api/wmi/qualifierset-put.md | Converted qualifier name (Key) to code format |
| docs/framework/unmanaged-api/wmi/putmethod.md | Removed trailing spaces; converted qualifier names (ID) to code format |
| docs/framework/unmanaged-api/wmi/putinstancewmi.md | Converted flavor/qualifier names to code format |
| docs/framework/unmanaged-api/hosting/startup-flags-enumeration.md | Removed trailing spaces; converted XML tag references to code format |
| docs/framework/unmanaged-api/hosting/metahost-config-flags-enumeration.md | Removed trailing spaces; converted XML tag references to code format |
| docs/framework/unmanaged-api/hosting/iclrruntimeinfo-bindaslegacyv2runtime-method.md | Removed trailing spaces; converted XML tag references to code format |
| docs/framework/unmanaged-api/hosting/iclrmetahost-querylegacyv2runtimebinding-method.md | Removed trailing spaces; converted XML tag references to code format |
| docs/framework/unmanaged-api/hosting/iclrmetahost-interface.md | Removed trailing spaces; converted XML tag references to code format |
| docs/framework/unmanaged-api/hosting/iclrappdomainresourcemonitor-interface.md | Removed trailing spaces; converted XML tag references to code format |
| docs/framework/unmanaged-api/diagnostics/isymunmanagedasyncmethodpropertieswriter-interface.md | Converted event name (CatchHandlerFound) to code format |
| docs/framework/unmanaged-api/diagnostics/isymunmanagedasyncmethodpropertieswriter-definecatchhandleriloffset-method.md | Converted event name to code format |
| docs/framework/unmanaged-api/authenticode/axlrsakeyvaluetopublickeytoken-function.md | Converted XML element names to code format |
| docs/framework/tools/winres-exe-windows-forms-resource-editor.md | Converted window/property names to code format |
| docs/framework/tools/tlbimp-exe-type-library-importer.md | Removed trailing spaces; converted parameter values to code format |
| docs/framework/tools/tlbexp-exe-type-library-exporter.md | Removed trailing spaces; converted option names to code format |
| docs/framework/tools/mgmtclassgen-exe.md | Removed trailing spaces; converted parameter values and qualifiers to code format |
| docs/framework/tools/mdbg-exe.md | Converted command names to code format for consistency |
| docs/framework/tools/mage-exe-manifest-generation-and-editing-tool.md | Converted XML element names to code format |
| docs/framework/tools/index.md | Removed trailing spaces; converted XML tag references to code format |
| docs/framework/tools/ildasm-exe-il-disassembler.md | Removed trailing spaces; converted parameter values to code format |
| docs/framework/tools/ilasm-exe-il-assembler.md | Removed trailing spaces; converted option values to code format |
| docs/framework/tools/caspol-exe-code-access-security-policy-tool.md | Converted XML tag references to code format |
| docs/framework/tools/al-exe-assembly-linker.md | Converted Win32 resource field names to code format |
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
| |**/forward**|Uses forward class declaration.| | ||
| |**/headers**|Includes file header information in the output.| | ||
| |**/item:** `class`[**::** `member`[`(sig`]]|Disassembles the following depending upon the argument supplied:<br /><br /> - Disassembles the specified `class`.<br />- Disassembles the specified `member` of the `class`.<br />- Disassembles the `member` of the `class` with the specified signature `sig`. The format of `sig` is:<br /> [`instance`] `returnType`(`parameterType1`, `parameterType2`, …, `parameterTypeN`)<br /> **Note** In the .NET Framework versions 1.0 and 1.1, `sig` must be followed by a closing parenthesis: `(sig)`. Starting with the Net Framework 2.0 the closing parenthesis must be omitted: `(sig`.| | ||
| |**/item:** `class`[**::** `member`[`(sig`]]|Disassembles the following depending upon the argument supplied:<br /><br /> - Disassembles the specified `class`.<br />- Disassembles the specified `member` of the `class`.<br />- Disassembles the `member` of the `class` with the specified signature `sig`. The format of `sig` is:<br /> [`instance`] `returnType`(`parameterType1`, `parameterType2`, …, `parameterTypeN`)<br /> `Note` In the .NET Framework versions 1.0 and 1.1, `sig` must be followed by a closing parenthesis: `(sig)`. Starting with the Net Framework 2.0 the closing parenthesis must be omitted: `(sig`.| |
Copilot AI Nov 28, 2025
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 word "Note" should not be formatted with backticks in this context. Per the Markdown style guidelines, only use code formatting for file names, folders, custom types, and non-localizable text. "Note" is a standard English word introducing a note section, not a technical term.
| ``` | ||
| | ||
| In the previous example, there could be several methods named `MyMethod` with different signatures. The following command disassembles the instance method `MyMethod` with the return type of **void** and the parameter types **int32** and **string**. | ||
| In the previous example, there could be several methods named `MyMethod` with different signatures. The following command disassembles the instance method `MyMethod` with the return type of `void` and the parameter types **int32** and **string**. |
Copilot AI Nov 28, 2025
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 word "void" should be formatted as void (with backticks) to be consistent with how return types are formatted elsewhere in documentation. In line 163, "void" is a technical type keyword that should use code formatting.
Contributes to #50193.
Internal previews
Toggle expand/collapse