Skip to content

Commit 5362904

Browse files
author
Colin Robertson
authored
Fix additional markdig migration issues (MicrosoftDocs#1550)
* Fix additional markdig migration issues * Fix additional issues found by markdig migration * More Markdig fixes in CRT * Fix more borked tables for Markdig * Fix another set of Markdig issues
1 parent ad605ae commit 5362904

File tree

320 files changed

+1780
-1815
lines changed

Some content is hidden

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

320 files changed

+1780
-1815
lines changed

docs/assembler/masm/at-at.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ f1_keywords: ["@@:"]
55
helpviewer_keywords: ["@@: symbol"]
66
ms.assetid: 4c0aa730-d534-4efd-9608-54d683d78654
77
---
8-
# @@:
8+
# \@\@:
99

10-
Defines a code label recognizable only between *label1* and *label2*, where *label1* is either start of code or the previous `@@:` label, and *label2* is either end of code or the next `@@:` label. See [@B](../../assembler/masm/at-b.md) and [@F](../../assembler/masm/at-f.md).
10+
Defines a code label recognizable only between *label1* and *label2*, where *label1* is either start of code or the previous `@@:` label, and *label2* is either end of code or the next `@@:` label. See [\@B](../../assembler/masm/at-b.md) and [\@F](../../assembler/masm/at-f.md).
1111

1212
## Syntax
1313

14-
> @@:
14+
> **\@\@:**
1515
1616
## See also
1717

docs/assembler/masm/directives-reference.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,9 @@ ms.assetid: da6efcd1-18f7-41de-81cd-a002a02f9a22
6161

6262
### Equates
6363

64-
||
65-
|-|
66-
|[=](../../assembler/masm/equal.md)|
67-
|[EQU](../../assembler/masm/equ.md)|
68-
|[TEXTEQU](../../assembler/masm/textequ.md)|
64+
||||
65+
|-|-|-|
66+
|[=](../../assembler/masm/equal.md)|[EQU](../../assembler/masm/equ.md)|[TEXTEQU](../../assembler/masm/textequ.md)|
6967

7068
### Listing Control
7169

docs/assembler/masm/dot-model.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ The following example demonstrates the use of the `.MODEL` directive.
5151
```asm
5252
; file simple.asm
5353
; For x86 (32-bit), assemble with debug information:
54-
;   ml -c -Zi simple.asm
54+
; ml -c -Zi simple.asm
5555
; For x64 (64-bit), assemble with debug information:
56-
;   ml64 -c -DX64 -Zi simple.asm
56+
; ml64 -c -DX64 -Zi simple.asm
5757
;
5858
; In this sample, the 'X64' define excludes source not used
59-
;  when targeting the x64 architecture
59+
; when targeting the x64 architecture
6060
6161
ifndef X64
6262
.686p
@@ -71,8 +71,8 @@ endif
7171
; user code
7272
7373
fxn PROC public
74-
  xor eax, eax ; zero function return value
75-
  ret
74+
xor eax, eax ; zero function return value
75+
ret
7676
fxn ENDP
7777
7878
end

docs/assembler/masm/dot-safeseh.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ For example, to register a safe exception handler, create a new MASM file (as fo
2323

2424
```asm
2525
.386
26-
.model  flat
27-
MyHandler   proto
28-
.safeseh    MyHandler
26+
.model flat
27+
MyHandler proto
28+
.safeseh MyHandler
2929
end
3030
```
3131

docs/assembler/masm/equ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The first directive assigns numeric value of *expression* to *name*.
1212
## Syntax
1313

1414
> *name* EQU *expression*
15-
15+
>
1616
> *name* EQU \<*text*>
1717
1818
## Remarks

docs/assembler/masm/label-masm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Creates a new label by assigning the current location-counter value and the give
1212
## Syntax
1313

1414
> *name* LABEL *type*
15-
16-
> *name* LABEL [[NEAR | FAR | PROC]] PTR [[*type*]]
15+
>
16+
> *name* LABEL \[NEAR | FAR | PROC] PTR \[*type*]
1717
1818
## See also
1919

docs/assembler/masm/local-masm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ In the first directive, within a macro, **LOCAL** defines labels that are unique
1111

1212
## Syntax
1313

14-
> LOCAL *localname* [[, *localname*]] ...
15-
16-
> LOCAL *label* [[ [*count*] ]] [[:*type*]] [[, *label* [[ [*count*] ]] [[*type*]] ]] ...
14+
> LOCAL *localname* \[, *localname*] ...
15+
>
16+
> LOCAL *label* \[ __\[__*count*__]__ ] \[__:__*type*] \[__,__ *label* \[ __\[__*count*__]__ ] \[*type*] ] ...
1717
1818
## Remarks
1919

docs/assembler/masm/ml-and-ml64-command-line-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ For more information on ml64.exe, see [MASM for x64 (ml64.exe)](../../assembler/
1313

1414
## Syntax
1515

16-
> ML [[*options*]] *filename* [[ [[*options*]] *filename*]]
17-
18-
> ML64 [[*options*]] *filename* [[ [[*options*]] *filename*]] ... [[/link *linkoptions*]]
16+
> ML \[*options*] *filename* \[ \[*options*] *filename*]
17+
>
18+
> ML64 \[*options*] *filename* \[ \[*options*] *filename*] ... \[/link *linkoptions*]
1919
2020
### Parameters
2121

docs/assembler/masm/mmword.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ While both instructions work on 64-bit operands, `QWORD` is the type for 64-bit
2828
## Example
2929

3030
```asm
31-
movq     mm0, mmword ptr [ebx]
31+
movq mm0, mmword ptr [ebx]
3232
```

docs/assembler/masm/operator-dot.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ The first operator returns *expression* plus the offset of *field* within its st
1111

1212
## Syntax
1313

14-
> *expression*<br/> . *field* [[. *field*]] ...
15-
16-
> [*register*]. *field* [[. *field*]] ...
14+
> *expression* __.__ *field* \[__.__ *field*] ...
15+
>
16+
> __\[__*register*__]__ __.__ *field* \[__.__ *field*] ...
1717
1818
## See also
1919

0 commit comments

Comments
 (0)