-
Notifications
You must be signed in to change notification settings - Fork 1.7k
fix: MD027/no-multiple-space-blockquote #3119
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
fix: MD027/no-multiple-space-blockquote #3119
Conversation
Multiple spaces after blockquote symbol Find: `\]\n( *)> ` Replace: `]\n$1> ` Filter: *.md Some manual cleanup afterwards
@gewarren - Would you review the proposed changes? Thank you. |
@JasonCard We've had a number of far-reaching whitespace improvement PRs (like this one) coming through our repo. Does this pose any issues for localization? Here's another big PR that was merged last week. |
@gewarren Thank you for checking. Removing white space will not affect loc, so no worries. The update of removed white spaces before strings will be reflected automatically and translations will be recycled as is. |
@@ -64,7 +64,7 @@ First, create a Universal Windows Platform project. The project type comes with | |||
|
|||
> [!NOTE] | |||
> If this is the first time you have used Visual Studio to create a UWP app, a **Settings** dialog box might appear. Choose **Developer mode**, and then choose **Yes**.<br><br> | |||
<br><br>Visual Studio installs an additional Developer Mode package for you. When the package installation is complete, close the **Settings** dialog box. | |||
> <br><br>Visual Studio installs an additional Developer Mode package for you. When the package installation is complete, close the **Settings** dialog box. |
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.
We should check that this renders as expected on staging - https://docs.microsoft.com/en-us/visualstudio/get-started/csharp/tutorial-uwp?view=vs-2019#create-a-project
@@ -75,8 +75,8 @@ In the window, you can use commands such as the following to install a package: | |||
> [!Tip] | |||
> By default, npm will execute in your project's home directory. If you have multiple projects | |||
> in your solution specify the name or the path of the project in brackets. | |||
`.npm [MyProjectNameOrPath] install [email protected]` | |||
> `.npm [MyProjectNameOrPath] install [email protected]` |
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.
Multiple spaces after blockquote symbol
Find:
\]\n( *)>
Replace:
]\n$1>
Filter: *.md
Some manual cleanup afterwards