Skip to content

Commit 4e02c12

Browse files
authored
Replace br elements with escapes in 2 topics
1 parent 5733f63 commit 4e02c12

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

docs/build/reference/msbuild-reference-cpp.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ If for some reason you wish to use MSBuild directly from the command line, see [
1212

1313
## In this section
1414

15-
[MSBuild internals for C++ projects](msbuild-visual-cpp-overview.md)<br/>
15+
[MSBuild internals for C++ projects](msbuild-visual-cpp-overview.md)\
1616
Information about how properties and targets are stored and consumed.
1717

18-
[Common macros for build commands and properties](common-macros-for-build-commands-and-properties.md)<br/>
18+
[Common macros for build commands and properties](common-macros-for-build-commands-and-properties.md)\
1919
Describes macros (compile-time constants) that can be used to define properties such as paths and product versions.
2020

21-
[File types created for C++ projects](file-types-created-for-visual-cpp-projects.md)<br/>
21+
[File types created for C++ projects](file-types-created-for-visual-cpp-projects.md)\
2222
Describes the various kinds of files that Visual Studio creates for different project types.
2323

24-
[Visual Studio C++ project templates](visual-cpp-project-types.md)<br>
24+
[Visual Studio C++ project templates](visual-cpp-project-types.md)\
2525
Describes the MSBuild-based project types that are available for C++.
2626

27-
[C++ new item templates](using-visual-cpp-add-new-item-templates.md)<br>
27+
[C++ new item templates](using-visual-cpp-add-new-item-templates.md)\
2828
Describes source files and other items you can add to a Visual Studio project.
2929

3030
[Precompiled header files](../creating-precompiled-header-files.md)\
3131
How to use precompiled header files and how to create your own custom precompiled code to speed up build times.
3232

33-
[Visual Studio project property reference](property-pages-visual-cpp.md)<br/>
33+
[Visual Studio project property reference](property-pages-visual-cpp.md)\
3434
Reference documentation for project properties that are set in the Visual Studio IDE.
3535

3636
## See also

docs/security/security-best-practices-for-cpp.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ This article contains information about security tools and practices. Using them
1414

1515
These security features are built into the Microsoft C++ compiler and linker:
1616

17-
[`/guard` (Enable Control Flow Guard)](../build/reference/guard-enable-control-flow-guard.md)<br/>
17+
[`/guard` (Enable Control Flow Guard)](../build/reference/guard-enable-control-flow-guard.md)\
1818
Causes the compiler to analyze control flow for indirect call targets at compile time, and then to insert code to verify the targets at runtime.
1919

20-
[`/GS` (Buffer Security Check)](../build/reference/gs-buffer-security-check.md)<br/>
20+
[`/GS` (Buffer Security Check)](../build/reference/gs-buffer-security-check.md)\
2121
Instructs the compiler to insert overrun detection code into functions that are at risk of being exploited. When an overrun is detected, execution is stopped. By default, this option is on.
2222

23-
[`/SAFESEH` (Image has Safe Exception Handlers)](../build/reference/safeseh-image-has-safe-exception-handlers.md)<br/>
23+
[`/SAFESEH` (Image has Safe Exception Handlers)](../build/reference/safeseh-image-has-safe-exception-handlers.md)\
2424
Instructs the linker to include in the output image a table that contains the address of each exception handler. At run time, the operating system uses this table to make sure that only legitimate exception handlers are executed. This helps prevent the execution of exception handlers that are introduced by a malicious attack at run time. By default, this option is off.
2525

2626
[`/NXCOMPAT`](../build/reference/nxcompat.md), [`/NXCOMPAT` (Compatible with Data Execution Prevention)](../build/reference/nxcompat-compatible-with-data-execution-prevention.md)\
2727
These compiler and linker options enable Data Execution Prevention (DEP) compatibility. DEP guards the CPU against the execution of non-code pages.
2828

29-
[`/analyze` (Code Analysis)](../build/reference/analyze-code-analysis.md)<br/>
29+
[`/analyze` (Code Analysis)](../build/reference/analyze-code-analysis.md)\
3030
This compiler option activates code analysis that reports potential security issues such as buffer overrun, un-initialized memory, null pointer dereferencing, and memory leaks. By default, this option is off. For more information, see [Code Analysis for C/C++ Overview](../code-quality/code-analysis-for-c-cpp-overview.md).
3131

32-
[`/DYNAMICBASE` (Use address space layout randomization)](../build/reference/dynamicbase-use-address-space-layout-randomization.md)<br/>
32+
[`/DYNAMICBASE` (Use address space layout randomization)](../build/reference/dynamicbase-use-address-space-layout-randomization.md)\
3333
This linker option enables the building of an executable image that can be loaded at different locations in memory at the beginning of execution. This option also makes the stack location in memory much less predictable.
3434

3535
## Security-Enhanced CRT
@@ -86,6 +86,6 @@ For information about how to indentify and mitigate against speculative executio
8686

8787
## See also
8888

89-
<xref:System.Security> <br/>
90-
[Security](/dotnet/standard/security/index)<br/>
89+
<xref:System.Security>\
90+
[Security](/dotnet/standard/security/index)\
9191
[How User Account Control (UAC) Affects Your Application](how-user-account-control-uac-affects-your-application.md)

0 commit comments

Comments
 (0)