Skip to content

Commit e7e62b9

Browse files
committed
fix: MD030/list-marker-space
Replace unordered list space after marker inside blockquotes Find: `^>(\s*)\- ` Replace: `>$1- ` Filter: *.md
1 parent 1c30625 commit e7e62b9

21 files changed

+52
-52
lines changed

docs/debugger/autos-and-locals-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ In native C++ code, you might have to qualify the context of a variable name. Fo
5050
>[!CAUTION]
5151
>Make sure you understand the consequences before you change values and expressions. Some possible issues are:
5252
>
53-
>- Evaluating some expressions can change the value of a variable or otherwise affect the state of your program. For example, evaluating `var1 = ++var2` changes the value of both `var1` and `var2`. These expressions are said to have [side effects](https://en.wikipedia.org/wiki/Side_effect_\(computer_science\)). Side effects can cause unexpected results if you are not aware of them.
53+
>- Evaluating some expressions can change the value of a variable or otherwise affect the state of your program. For example, evaluating `var1 = ++var2` changes the value of both `var1` and `var2`. These expressions are said to have [side effects](https://en.wikipedia.org/wiki/Side_effect_\(computer_science\)). Side effects can cause unexpected results if you are not aware of them.
5454
>
55-
>- Editing floating-point values can result in minor inaccuracies because of decimal-to-binary conversion of fractional components. Even a seemingly harmless edit can result in changes to some of the bits in the floating-point variable.
55+
>- Editing floating-point values can result in minor inaccuracies because of decimal-to-binary conversion of fractional components. Even a seemingly harmless edit can result in changes to some of the bits in the floating-point variable.
5656
5757
::: moniker range=">= vs-2019"
5858
## Search in the Autos or Locals window

docs/profiling/concurrency-visualizer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ms.workload:
2222
>
2323
> - Download the [Concurrency Visualizer for Visual Studio 2017](https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.ConcurrencyVisualizer2017#overview) extension.
2424
> - Download the [Concurrency Visualizer for Visual Studio 2015](https://marketplace.visualstudio.com/items?itemName=Diagnostics.ConcurrencyVisualizerforVisualStudio2015) extension.
25-
> - Download the [Concurrency Visualizer Collection Tools for Visual Studio 2015](http://www.microsoft.com/download/details.aspx?id=49103).
25+
> - Download the [Concurrency Visualizer Collection Tools for Visual Studio 2015](http://www.microsoft.com/download/details.aspx?id=49103).
2626
>
2727
> The [Concurrency Visualizer Command-Line Utility (CVCollectionCmd)](../profiling/concurrency-visualizer-command-line-utility-cvcollectioncmd.md) lets you collect traces from the command line that you can view in the Concurrency Visualizer for Visual Studio 2015. The tool can be used on computers that do not have Visual Studio installed.
2828

docs/vs-2015/cross-platform/build-apps-with-native-ui-using-xamarin-in-visual-studio.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ Once you've done the steps in [Setup and install](../cross-platform/setup-and-in
3838
>
3939
> - Xamarin apps with native UI:
4040
>
41-
> - [Hello, Android](https://developer.xamarin.com/guides/android/getting_started/hello,android/) (simple app with one screen)
42-
> - [Hello, Android multiscreen](https://developer.xamarin.com/guides/android/getting_started/hello,android_multiscreen/) (app with navigation between screens)
43-
> - [Android Fragments Walkthrough](http://developer.xamarin.com/guides/android/platform_features/fragments/fragments_walkthrough/) (used for master/detail screens, among other things)
44-
> - [Hello, iOS](https://developer.xamarin.com/guides/ios/getting_started/hello,_iOS/)
45-
> - [Hello, iOS Multiscreen](https://developer.xamarin.com/guides/ios/getting_started/hello,_iOS_multiscreen/)
46-
> - Xamarin apps with Xamarin.Forms (shared UI)
41+
> - [Hello, Android](https://developer.xamarin.com/guides/android/getting_started/hello,android/) (simple app with one screen)
42+
> - [Hello, Android multiscreen](https://developer.xamarin.com/guides/android/getting_started/hello,android_multiscreen/) (app with navigation between screens)
43+
> - [Android Fragments Walkthrough](http://developer.xamarin.com/guides/android/platform_features/fragments/fragments_walkthrough/) (used for master/detail screens, among other things)
44+
> - [Hello, iOS](https://developer.xamarin.com/guides/ios/getting_started/hello,_iOS/)
45+
> - [Hello, iOS Multiscreen](https://developer.xamarin.com/guides/ios/getting_started/hello,_iOS_multiscreen/)
46+
> - Xamarin apps with Xamarin.Forms (shared UI)
4747
>
48-
> - [Hello, Xamarin.Forms](https://developer.xamarin.com/guides/cross-platform/xamarin-forms/getting-started/hello-xamarin-forms/quickstart/)
49-
> - [Hello, Xamarin.Forms Multiscreen](https://developer.xamarin.com/guides/cross-platform/xamarin-forms/getting-started/hello-xamarin-forms-multiscreen/)
48+
> - [Hello, Xamarin.Forms](https://developer.xamarin.com/guides/cross-platform/xamarin-forms/getting-started/hello-xamarin-forms/quickstart/)
49+
> - [Hello, Xamarin.Forms Multiscreen](https://developer.xamarin.com/guides/cross-platform/xamarin-forms/getting-started/hello-xamarin-forms-multiscreen/)
5050
5151
## <a name="solution"></a> Set up your solution
5252
These steps create a Xamarin solution with native UI that contains a PCL for shared code and two added NuGet packages.

docs/vs-2015/debugger/create-custom-views-of-native-objects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The Visual Studio Natvis framework lets you customize the way Visual Studio disp
2828
> You cannot use the Natvis framework for visualizations when:
2929
>
3030
> - You are debugging a C++ Windows desktop project with debugger type set to **mixed**.
31-
> - You are doing mixed mode debugging in a Windows desktop application in managed compatibility mode (**Tools / Options / Debugging / General / Use Managed Compatibility Mode**).
32-
> - You are debugging in a Windows desktop application in native compatibility mode (**Tools / Options / Debugging / General / Use Native Compatibility Mode**).
31+
> - You are doing mixed mode debugging in a Windows desktop application in managed compatibility mode (**Tools / Options / Debugging / General / Use Managed Compatibility Mode**).
32+
> - You are debugging in a Windows desktop application in native compatibility mode (**Tools / Options / Debugging / General / Use Native Compatibility Mode**).
3333
3434
## <a name="BKMK_Why_create_visualizations_"></a> Why create Natvis visualizations?
3535
You can use the Natvis framework to create visualization rules for the types you create so developers can see them easily during debugging.

docs/vs-2015/debugger/debug-multiple-processes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Here’s how to start debugging processes, switch between processes, break and c
6363
> - Attach to the child process after it has been started.
6464
>
6565
> -or-
66-
> - Configure Windows to automatically start the child process in a new instance of the debugger.
66+
> - Configure Windows to automatically start the child process in a new instance of the debugger.
6767
6868
### <a name="BKMK_Start_debugging_multiple_processes_in_a_Visual_Studio_solution"></a> Start debugging multiple processes in a Visual Studio solution
6969
When you have more than one project in a Visual Studio solution that can run independently (projects that run in separate processes), you can select which projects the debugger starts.

docs/vs-2015/debugger/format-specifiers-in-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ You can change the format in which a value is displayed in the **Watch** window
4040
> The Visual Studio native debugger changed to a new debugging engine. As part of this change, some new format specifiers were added and some old ones were removed. The older debugger is still used when you do interop (mixed native and managed) debugging with C++/CLI. The following sections in this topic show the format specifiers for each debug engine.
4141
>
4242
> - [Format Specifiers](#BKMK_Visual_Studio_2012_format_specifiers) describes the format specifiers in the new debugging engine.
43-
> - [Format specifiers for interop debugging with C++/CLI](#BKMK_Format_specifiers_for_interop_debugging_and_C___edit_and_continue) describes the format specifiers in the older debugging engine.
43+
> - [Format specifiers for interop debugging with C++/CLI](#BKMK_Format_specifiers_for_interop_debugging_and_C___edit_and_continue) describes the format specifiers in the older debugging engine.
4444
4545
## Using Format Specifiers
4646
If you have the following code:

docs/vs-2015/debugger/navigating-through-code-with-the-debugger.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -137,18 +137,18 @@ Get familiar with commands and shortcuts to navigate code in the debugger and th
137137
> Setting the next statement causes the program counter to jump directly to the new location. Use this command with caution:
138138
>
139139
> - Instructions between the old and new execution points are not executed.
140-
> - If you move the execution point backwards, intervening instructions are not undone.
141-
> - Moving the next statement to another function or scope usually results in call-stack corruption, causing a run-time error or exception. If you try moving the next statement to another scope, the debugger opens a dialog box with a warning and gives you a chance to cancel the operation. In Visual Basic, you cannot move the next statement to another scope or function.
142-
> - In native C++, if you have run-time checks enabled, setting the next statement can cause an exception to be thrown when execution reaches the end of the method.
143-
> - When Edit and Continue is enabled, **Set Next Statement** fails if you have made edits that Edit and Continue cannot remap immediately. This can occur, for example, if you have edited code inside a catch block. When this happens, you’ll see an error message that tells you that the operation is not supported.
140+
> - If you move the execution point backwards, intervening instructions are not undone.
141+
> - Moving the next statement to another function or scope usually results in call-stack corruption, causing a run-time error or exception. If you try moving the next statement to another scope, the debugger opens a dialog box with a warning and gives you a chance to cancel the operation. In Visual Basic, you cannot move the next statement to another scope or function.
142+
> - In native C++, if you have run-time checks enabled, setting the next statement can cause an exception to be thrown when execution reaches the end of the method.
143+
> - When Edit and Continue is enabled, **Set Next Statement** fails if you have made edits that Edit and Continue cannot remap immediately. This can occur, for example, if you have edited code inside a catch block. When this happens, you’ll see an error message that tells you that the operation is not supported.
144144
>
145145
> [!NOTE]
146146
> In managed code, you cannot move the next statement under the following conditions:
147147
>
148148
> - The next statement is in a different method than the current statement.
149-
> - Debugging was started by using Just-In-Time debugging.
150-
> - A callstack unwind is in progress.
151-
> - A System.StackOverflowException or System.Threading.ThreadAbortException exception has been thrown.
149+
> - Debugging was started by using Just-In-Time debugging.
150+
> - A callstack unwind is in progress.
151+
> - A System.StackOverflowException or System.Threading.ThreadAbortException exception has been thrown.
152152
153153
You cannot set the next statement while your application is actively running. To set the next statement, the debugger must be in break mode.
154154

docs/vs-2015/extensibility/creating-a-basic-project-system-part-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In Visual Studio, projects are the containers that developers use to organize so
2424
> If you need to extend Visual Studio with a custom project type, we strongly recommend leveraging the [Visual Studio Project System](https://github.com/Microsoft/VSProjectSystem) which has a number of advantages over building a project system from scratch:
2525
>
2626
> - Easier onboarding. Even a basic project system requires tens of thousands of lines of code. Leveraging CPS reduces the onboarding cost to a few clicks before you are ready to customize it to your needs.
27-
> - Easier maintenance. By leveraging CPS, you only need to maintain your own scenarios. We handle the upkeep of all of the project system infrastructure.
27+
> - Easier maintenance. By leveraging CPS, you only need to maintain your own scenarios. We handle the upkeep of all of the project system infrastructure.
2828
>
2929
> If you need to target versions of Visual Studio older than Visual Studio 2013, you will not be able to leverage CPS in a Visual Studio extension. If that is the case, this walkthrough is a good place to get started.
3030

docs/vs-2015/extensibility/shell-isolated-or-integrated.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You can create your own Visual Studio-based application in either integrated or
4646
> If you collect separate usage data from your customers through your application, you must provide appropriate notice to users of your application of what you collect. When you distribute either the isolated or integrated shell software as part of your application, according to the Visual Studio Software Development Kit license, you must include one of the following:
4747
>
4848
> - the End User License Agreement as part of your application license
49-
> - your own EULA that requires your customers to agree to terms that protect the Visual Studio integrated or isolated shell at least as much as the Microsoft End User License Terms for the shell software
49+
> - your own EULA that requires your customers to agree to terms that protect the Visual Studio integrated or isolated shell at least as much as the Microsoft End User License Terms for the shell software
5050
5151
## Additional Resources
5252
For more information about redistributable packages, see the [Visual Studio Extensibility Downloads](http://go.microsoft.com/fwlink/?LinkID=119298) Web site.

docs/vs-2015/install/how-to-install-a-specific-release-of-visual-studio.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,18 @@ We update Visual Studio setup often so that you get the most current, optimized
4040
> Depending on the language that you want to use, please replace "enu" (for English) with one of the following values:
4141
>
4242
> - chs (for Chinese (Simplified))
43-
> - cht (for Chinese (Traditional))
44-
> - csy (for Czech)
45-
> - deu (for German)
46-
> - esn (for Spanish)
47-
> - fra (for French)
48-
> - ita (for Italian)
49-
> - jpa (for Japanese)
50-
> - kor (for Korean)
51-
> - plk (for Polish)
52-
> - ptb (for Portuguese)
53-
> - rus (for Russian)
54-
> - trk (for Turkish)
43+
> - cht (for Chinese (Traditional))
44+
> - csy (for Czech)
45+
> - deu (for German)
46+
> - esn (for Spanish)
47+
> - fra (for French)
48+
> - ita (for Italian)
49+
> - jpa (for Japanese)
50+
> - kor (for Korean)
51+
> - plk (for Polish)
52+
> - ptb (for Portuguese)
53+
> - rus (for Russian)
54+
> - trk (for Turkish)
5555
5656
## See Also
5757
[Visual Studio Administrator Guide](../install/visual-studio-administrator-guide.md)

docs/vs-2015/profiling/analyze-energy-use-in-store-apps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The Visual Studio **Energy Consumption** profiler helps you analyze the power an
5555

5656
> [!NOTE]
5757
> - Windows.Foundation.Diagnostics LoggingChannel implements the [Windows.Foundation.IClosable](http://msdn.microsoft.com/library/windows/apps/windows.foundation.iclosable.aspx) interface (projected as [System.IDisposable](http://msdn.microsoft.com/library/System.IDisposable.aspx) in C# and VB).To avoid leaking operating system resources, call [LoggingChannel.Close](http://msdn.microsoft.com/library/windows/apps/windows.foundation.diagnostics.loggingchannel.close.aspx)() (Windows.Foundation.Diagnostics.LoggingChannel.Dispose() in C# and VB) when you are finished with a logging channel.
58-
> - Each open logging channel must have a unique name. Attempting to create a new logging channel with the same name as an undisposed channel causes an exception.
58+
> - Each open logging channel must have a unique name. Attempting to create a new logging channel with the same name as an undisposed channel causes an exception.
5959
6060
See the Windows SDK Sample [LoggingSession Sample](http://code.msdn.microsoft.com/windowsapps/LoggingSession-Sample-ccd52336) for examples.
6161

@@ -76,8 +76,8 @@ if (performance && performance.mark) {
7676

7777
> [!TIP]
7878
> - We don’t recommend energy profiling on the Windows Store simulator or on the Visual Studio computer. Profiling on the actual device provides far more realistic data.
79-
> - Profile on the target device while it is powered by its batteries.
80-
> - Close other apps that might use the same resources (network, CPU, or display).
79+
> - Profile on the target device while it is powered by its batteries.
80+
> - Close other apps that might use the same resources (network, CPU, or display).
8181
8282
## <a name="BKMK_Collect_energy_profile_data_for_your_app"></a> Collect energy profile data for your app
8383

docs/vs-2015/profiling/concurrency-visualizer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ NOTE]
2424
> The Concurrency Visualizer is an optional extension to Visual Studio. Download the Concurrency Visualizer and the Concurrency Visualizer Collection Tools from the following links:
2525
>
2626
> - Download the [Concurrency Visualizer](https://visualstudiogallery.msdn.microsoft.com/a6c24ce9-beec-4545-9261-293061436ee9) extension.
27-
> - Download the [Concurrency Visualizer Collection Tools for Visual Studio 2015](http://www.microsoft.com/download/details.aspx?id=49103).
27+
> - Download the [Concurrency Visualizer Collection Tools for Visual Studio 2015](http://www.microsoft.com/download/details.aspx?id=49103).
2828
>
2929
> The [Concurrency Visualizer Command-Line Utility (CVCollectionCmd)](../profiling/concurrency-visualizer-command-line-utility-cvcollectioncmd.md) lets you collect traces from the command line that you can view in the Concurrency Visualizer for Visual Studio 2015. The tool can be used on computers that do not have Visual Studio installed.
3030

docs/vs-2015/profiling/how-to-profile-javascript-code-in-web-pages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ manager: jillfra
2929
> To profile JavaScript in Windows Store apps, see one of the following topics:
3030
>
3131
> - [JavaScript Function Timing](http://msdn.microsoft.com/library/b2bf49fc-aea7-4d9c-8fcf-cff8b8dd0c03) [JavaScript Function Timing on a Remote Device](http://msdn.microsoft.com/library/d78812b6-a97e-46dc-8d99-e724d1d725d8)
32-
> - [Analyze JavaScript Function Timing data](http://msdn.microsoft.com/library/b5aea8d8-36df-47ba-a7ca-95406700ca9b)
33-
> -
32+
> - [Analyze JavaScript Function Timing data](http://msdn.microsoft.com/library/b5aea8d8-36df-47ba-a7ca-95406700ca9b)
33+
> -
3434
3535
You can use the Profiling Wizard to create a performance session. Specify the instrumentation method and then specify the JavaScript profiling option on the Instrumentation page of the properties dialog box for the performance session.
3636

docs/vs-2015/profiling/memory-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Find memory leaks and inefficient memory while you’re debugging with the debug
4747

4848
> [!TIP]
4949
> - To create a baseline for memory comparisons, consider taking a snapshot at the start of your debugging session.
50-
> - Because it can be challenging to capture the memory profile of an operation that interests you when your app frequently allocates and de-allocates memory, set breakpoints at the start and end of the operation or step through the operation to find the exact point that memory changed.
50+
> - Because it can be challenging to capture the memory profile of an operation that interests you when your app frequently allocates and de-allocates memory, set breakpoints at the start and end of the operation or step through the operation to find the exact point that memory changed.
5151
5252
## Viewing memory snapshot details
5353
The rows of Memory Usage summary table lists the snapshots that you have taken during the debugging session.

0 commit comments

Comments
 (0)