Skip to content

Commit 7eee10d

Browse files
author
Colin Robertson
committed
Fix some places with ambiguous formatting for Markdig
1 parent f0241c6 commit 7eee10d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+364
-463
lines changed

docs/assembler/masm/option-masm.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
---
2-
title: "OPTION (MASM) | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "11/04/2016"
5-
ms.technology: ["cpp-masm"]
6-
ms.topic: "reference"
7-
f1_keywords: ["option"]
8-
dev_langs: ["C++"]
9-
helpviewer_keywords: ["OPTION directive"]
10-
ms.assetid: 8e10dabd-e36f-4586-ab01-ada96736b0bd
11-
author: "corob-msft"
12-
ms.author: "corob"
13-
ms.workload: ["cplusplus"]
1+
---
2+
title: "OPTION (MASM) | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "11/04/2016"
5+
ms.technology: ["cpp-masm"]
6+
ms.topic: "reference"
7+
f1_keywords: ["option"]
8+
dev_langs: ["C++"]
9+
helpviewer_keywords: ["OPTION directive"]
10+
ms.assetid: 8e10dabd-e36f-4586-ab01-ada96736b0bd
11+
author: "corob-msft"
12+
ms.author: "corob"
13+
ms.workload: ["cplusplus"]
1414
---
1515
# OPTION (MASM)
1616
Enables and disables features of the assembler.
@@ -37,7 +37,7 @@ optionlist
3737
|**PROC**|**PROLOGUE**|**READONLY**|**NOREADONLY**|
3838
|**SCOPED**|**NOSCOPED**|**SEGMENT**|**SETIF2**.|
3939

40-
The syntax for LANGUAGE is **OPTION LANGUAGE:***x*, where *x* is one of C, SYSCALL, STDCALL, PASCAL, FORTRAN, or BASIC. SYSCALL, PASCAL, FORTRAN, and BASIC are not supported with used with [.MODEL](../../assembler/masm/dot-model.md) FLAT.
40+
The syntax for LANGUAGE is **OPTION LANGUAGE:**<em>x</em>, where *x* is one of C, SYSCALL, STDCALL, PASCAL, FORTRAN, or BASIC. SYSCALL, PASCAL, FORTRAN, and BASIC are not supported with used with [.MODEL](../../assembler/masm/dot-model.md) FLAT.
4141

4242
## See Also
4343
[Directives Reference](../../assembler/masm/directives-reference.md)

docs/assembler/masm/segment.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
---
2-
title: "SEGMENT | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "11/04/2016"
5-
ms.technology: ["cpp-masm"]
6-
ms.topic: "reference"
7-
f1_keywords: ["SEGMENT"]
8-
dev_langs: ["C++"]
9-
helpviewer_keywords: ["SEGMENT directive"]
10-
ms.assetid: e6f68367-6714-4f06-a79c-edfa88014430
11-
author: "corob-msft"
12-
ms.author: "corob"
13-
ms.workload: ["cplusplus"]
1+
---
2+
title: "SEGMENT | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "11/04/2016"
5+
ms.technology: ["cpp-masm"]
6+
ms.topic: "reference"
7+
f1_keywords: ["SEGMENT"]
8+
dev_langs: ["C++"]
9+
helpviewer_keywords: ["SEGMENT directive"]
10+
ms.assetid: e6f68367-6714-4f06-a79c-edfa88014430
11+
author: "corob-msft"
12+
ms.author: "corob"
13+
ms.workload: ["cplusplus"]
1414
---
1515
# SEGMENT
1616
Defines a program segment called *name* having segment attributes
@@ -40,7 +40,7 @@ name ENDS
4040
If this parameter is not specified, **PARA** is used by default.
4141

4242
*combine*
43-
**PUBLIC**, **STACK**, **COMMON**, **MEMORY**, **AT***address*, **PRIVATE**
43+
**PUBLIC**, **STACK**, **COMMON**, **MEMORY**, **AT**<em>address</em>, **PRIVATE**
4444

4545
*use*
4646
**USE16**, **USE32**, **FLAT**

docs/atl/reference/catlfilemapping-class.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ class CAtlFileMapping : public CAtlFileMappingBase
3535

3636
|Name|Description|
3737
|----------|-----------------|
38-
|[CAtlFileMapping::operator T*](#operator_t_star)|Allows implicit conversion of `CAtlFileMapping` objects to `T`**\***.|
38+
|[CAtlFileMapping::operator T*](#operator_t_star)|Allows implicit conversion of `CAtlFileMapping` objects to `T*`.|
3939

4040
## Remarks
41-
This class adds a single cast operator to allow implicit conversion of `CAtlFileMapping` objects to `T`**\***. Other members are supplied by the base class, [CAtlFileMappingBase](../../atl/reference/catlfilemappingbase-class.md).
41+
This class adds a single cast operator to allow implicit conversion of `CAtlFileMapping` objects to `T*`. Other members are supplied by the base class, [CAtlFileMappingBase](../../atl/reference/catlfilemappingbase-class.md).
4242

4343
## Inheritance Hierarchy
4444
[CAtlFileMappingBase](../../atl/reference/catlfilemappingbase-class.md)
@@ -49,17 +49,17 @@ class CAtlFileMapping : public CAtlFileMappingBase
4949
**Header:** atlfile.h
5050

5151
## <a name="operator_t_star"></a> CAtlFileMapping::operator T*
52-
Allows implicit conversion of `CAtlFileMapping` objects to `T`**\***.
52+
Allows implicit conversion of `CAtlFileMapping` objects to `T*`.
5353

5454
```
5555
operator T*() const throw();
5656
```
5757

5858
### Return Value
59-
Returns a `T`**\*** pointer to the start of the memory-mapped file.
59+
Returns a `T*` pointer to the start of the memory-mapped file.
6060

6161
### Remarks
62-
Calls [CAtlFileMappingBase::GetData](../../atl/reference/catlfilemappingbase-class.md#getdata) and reinterprets the returned pointer as a `T`**\*** where *T* is the type used as the template parameter of this class.
62+
Calls [CAtlFileMappingBase::GetData](../../atl/reference/catlfilemappingbase-class.md#getdata) and reinterprets the returned pointer as a `T*` where *T* is the type used as the template parameter of this class.
6363

6464
## See Also
6565
[CAtlFileMappingBase Class](../../atl/reference/catlfilemappingbase-class.md)

docs/atl/reference/ccomaggobject-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ static HRESULT WINAPI CreateInstance(
117117

118118
### Parameters
119119
*pp*
120-
[out] A pointer to a **CComAggObject\<***contained* **>** pointer. If `CreateInstance` is unsuccessful, *pp* is set to NULL.
120+
[out] A pointer to a **CComAggObject\<**<em>contained</em>**>** pointer. If `CreateInstance` is unsuccessful, *pp* is set to NULL.
121121

122122
### Return Value
123123
A standard HRESULT value.

docs/atl/reference/ccomobject-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ CComObject(void* = NULL);
7575
```
7676

7777
### Parameters
78-
**void\***
79-
[in] This unnamed parameter is not used. It exists for symmetry with other **CCom***XXX*`Object`*XXX* constructors.
78+
<em>void\*</em>
79+
[in] This unnamed parameter is not used. It exists for symmetry with other `CComXXXObjectXXX` constructors.
8080

8181
### Remarks
8282
The destructor decrements it.

docs/atl/reference/ccomobjectnolock-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ CComObjectNoLock(void* = NULL);
7474
```
7575

7676
### Parameters
77-
**void\***
78-
[in] This unnamed parameter is not used. It exists for symmetry with other **CCom***XXX*`Object`*XXX* constructors.
77+
<em>void\*</em>
78+
[in] This unnamed parameter is not used. It exists for symmetry with other `CComXXXObjectXXX` constructors.
7979

8080
## <a name="dtor"></a> CComObjectNoLock::~CComObjectNoLock
8181
The destructor.

docs/build/aggregates-and-unions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ Other types, such as arrays, structs, and unions, have stricter alignment requir
2828
||||
2929
|-|-|-|
3030
|Scalar Type|C Data Type|Required Alignment|
31-
|**INT8**|`char`|Byte|
32-
|**UINT8**|`unsigned char`|Byte|
31+
|**INT8**|**char**|Byte|
32+
|**UINT8**|**unsigned char**|Byte|
3333
|**INT16**|**short**|Word|
3434
|**UINT16**|**unsigned short**|Word|
35-
|**INT32**|**int, long**|Doubleword|
35+
|**INT32**|**int**, **long**|Doubleword|
3636
|**UINT32**|**unsigned int, unsigned long**|Doubleword|
37-
|**INT64**|`__int64`|Quadword|
37+
|**INT64**|**__int64**|Quadword|
3838
|**UINT64**|**unsigned __int64**|Quadword|
3939
|**FP32 (single precision)**|**float**|Doubleword|
4040
|**FP64 (double precision)**|**double**|Quadword|
41-
|**POINTER**|**\***|Quadword|
42-
|`__m64`|**struct __m64**|Quadword|
43-
|`__m128`|**struct __m128**|Octaword|
41+
|**POINTER**|<strong>\*</strong>|Quadword|
42+
|**__m64**|**struct __m64**|Quadword|
43+
|**__m128**|**struct __m128**|Octaword|
4444

4545
The following aggregate alignment rules apply:
4646

docs/build/build-system-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The MSBuild system is used to build Visual C++ projects. However, in Visual Stud
3838

3939
In the current release, inheritance is supported by specifying the value of a property as the concatenation of one or more literal values and property macros. The **$(Inherit)** and **$(NoInherit)** macros are not supported.
4040

41-
In the following example, a semicolon-delimited list is assigned to a property on a property page. The list consists of the concatenation of the *\<value>* literal and the value of the `MyProperty` property, which is accessed by using the macro notation, **$(***MyProperty***)**.
41+
In the following example, a semicolon-delimited list is assigned to a property on a property page. The list consists of the concatenation of the *\<value>* literal and the value of the `MyProperty` property, which is accessed by using the macro notation, **$(**<em>MyProperty</em>**)**.
4242

4343
```
4444
Property=<value>;$(MyProperty)

docs/build/how-to-use-build-events-in-msbuild-projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A build event is a command that MSBuild performs at a particular stage in the bu
1717

1818
Each of the three build events is represented in an item definition group by a command element (`<Command>`) that is executed and a message element (`<Message>`) that is displayed when **MSBuild** performs the build event. Each element is optional, and if you specify the same element multiple times, the last occurrence takes precedence.
1919

20-
An optional *use-in-build* element (`<`*build-event***UseInBuild**`>`) can be specified in a property group to indicate whether the build event is executed. The value of the content of a *use-in-build* element is either `true` or `false`. By default, a build event is executed unless its corresponding *use-in-build* element is set to `false`.
20+
An optional *use-in-build* element (`<`*build-event*`UseInBuild>`) can be specified in a property group to indicate whether the build event is executed. The value of the content of a *use-in-build* element is either `true` or `false`. By default, a build event is executed unless its corresponding *use-in-build* element is set to `false`.
2121

2222
The following table lists each build event XML element:
2323

docs/build/reference/allowisolation-manifest-lookup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Specifies behavior for manifest lookup.
2828

2929
**/ALLOWISOLATION** is the default.
3030

31-
When isolation is disabled for an executable, the Windows loader will not attempt to find an application manifest for the newly created process. The new process will not have a default activation context, even if there is a manifest inside the executable or placed in the same directory as the executable with name *executable-name***.exe.manifest**.
31+
When isolation is disabled for an executable, the Windows loader will not attempt to find an application manifest for the newly created process. The new process will not have a default activation context, even if there is a manifest inside the executable or placed in the same directory as the executable with name <em>executable-name</em>**.exe.manifest**.
3232

3333
For more information, see [Manifest Files Reference](http://msdn.microsoft.com/library/aa375632).
3434

0 commit comments

Comments
 (0)