Conversation
an -> and
* (GH-8799) Backtick escaped char pairs in parentheses This commit uses the regex "\((\\.\\.)\)" to find and replace instances of pairs of backslash-escaped characters in the reference docs with their backticked equivalent so they render correctly instead of as normal text. * (GH-8799) Render single backtick in () as code This commit uses the regex '([^`])\(`\)' and replace '$1`` ` ``' to find and replace instances of a single backtick wrapped in parentheses with the markdown to ensure they render correctly as code without greedily replacing text it shouldn't. For example: "Foo bar (`) baz" => "Foo bar (`` ` ``) baz" "Foo bar (`(`) baz" => "Foo bar (`(`) baz * (MAINT) Clean up markdown for Adding Aliases cmdlet dev doc * (GH-8799) Render escaped chars in () as code This commit uses the regex '\(\\(.)\)' and replace '(`$1`)' to find and replace instances of an escaped single character wrapped in parentheses with the markdown to ensure they render correctly as code. It also updates a few escaped backticks (`` ` ``) which the previous regex did not find because they were escaped. * (MAINT) Clean up Move-Item formatting & standardize * (MAINT) Clean up ConvertFrom-StringData formatting * (MAINT) Clean up Clear-Content formatting * (MAINT) Clean up New-JobTrigger formatting * (MAINT) Clean up Get-ItemProperty formatting * (MAINT) Clean up formatting for creating an item provider * (MAINT) Clean up formatting for about_Certificate_Provider * Apply suggestions from code review Co-authored-by: Sean Wheeler <[email protected]> Co-authored-by: Sean Wheeler <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.