Skip to content

Commit c3b0306

Browse files
authored
Fix broken bookmark (#8822)
1 parent 296cda0 commit c3b0306

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

reference/5.1/Microsoft.PowerShell.Core/About/about_Parsing.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,15 @@ prevent PowerShell from misinterpreting the parentheses.
200200
icacls X:\VMS /grant Dom\HVAdmin:`(CI`)`(OI`)F
201201
```
202202

203-
### The stop-parsing and end-of-parameters tokens
204-
205203
Beginning in PowerShell 3.0, you can use the _stop-parsing_ (`--%`) and
206204
_end-of-parameters_ tokens (`--`) to stop PowerShell from interpreting input as
207205
PowerShell commands or expressions.
208206

209207
> [!NOTE]
210208
> The stop-parsing token is only intended for use on Windows platforms.
211209
210+
### The stop-parsing token
211+
212212
When calling a native command, place the stop-parsing token before the program
213213
arguments. This technique is much easier than using escape characters to
214214
prevent misinterpretation.
@@ -239,6 +239,8 @@ variable the token is passed through as-is.
239239
You cannot use stream redirection (like `>file.txt`) because they are passed
240240
verbatim as arguments to the target command.
241241

242+
### The end-of-parameters token
243+
242244
The end-of-parameters token (`--`) indicates that all arguments following it
243245
are to be passed in their actual form as though double quotes were placed
244246
around them. For example, using `--` you can output the string `-InputObject`

reference/7.0/Microsoft.PowerShell.Core/About/about_Parsing.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,15 @@ prevent PowerShell from misinterpreting the parentheses.
200200
icacls X:\VMS /grant Dom\HVAdmin:`(CI`)`(OI`)F
201201
```
202202

203-
### The stop-parsing and end-of-parameters tokens
204-
205203
Beginning in PowerShell 3.0, you can use the _stop-parsing_ (`--%`) and
206204
_end-of-parameters_ tokens (`--`) to stop PowerShell from interpreting input as
207205
PowerShell commands or expressions.
208206

209207
> [!NOTE]
210208
> The stop-parsing token is only intended for use on Windows platforms.
211209
210+
### The stop-parsing token
211+
212212
When calling a native command, place the stop-parsing token before the program
213213
arguments. This technique is much easier than using escape characters to
214214
prevent misinterpretation.
@@ -239,6 +239,8 @@ variable the token is passed through as-is.
239239
You cannot use stream redirection (like `>file.txt`) because they are passed
240240
verbatim as arguments to the target command.
241241

242+
### The end-of-parameters token
243+
242244
The end-of-parameters token (`--`) indicates that all arguments following it
243245
are to be passed in their actual form as though double quotes were placed
244246
around them. For example, using `--` you can output the string `-InputObject`

reference/7.1/Microsoft.PowerShell.Core/About/about_Parsing.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,15 @@ prevent PowerShell from misinterpreting the parentheses.
200200
icacls X:\VMS /grant Dom\HVAdmin:`(CI`)`(OI`)F
201201
```
202202

203-
### The stop-parsing and end-of-parameters tokens
204-
205203
Beginning in PowerShell 3.0, you can use the _stop-parsing_ (`--%`) and
206204
_end-of-parameters_ tokens (`--`) to stop PowerShell from interpreting input as
207205
PowerShell commands or expressions.
208206

209207
> [!NOTE]
210208
> The stop-parsing token is only intended for use on Windows platforms.
211209
210+
### The stop-parsing token
211+
212212
When calling a native command, place the stop-parsing token before the program
213213
arguments. This technique is much easier than using escape characters to
214214
prevent misinterpretation.
@@ -239,6 +239,8 @@ variable the token is passed through as-is.
239239
You cannot use stream redirection (like `>file.txt`) because they are passed
240240
verbatim as arguments to the target command.
241241

242+
### The end-of-parameters token
243+
242244
The end-of-parameters token (`--`) indicates that all arguments following it
243245
are to be passed in their actual form as though double quotes were placed
244246
around them. For example, using `--` you can output the string `-InputObject`

reference/7.2/Microsoft.PowerShell.Core/About/about_Parsing.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,15 @@ prevent PowerShell from misinterpreting the parentheses.
200200
icacls X:\VMS /grant Dom\HVAdmin:`(CI`)`(OI`)F
201201
```
202202

203-
### The stop-parsing and end-of-parameters tokens
204-
205203
Beginning in PowerShell 3.0, you can use the _stop-parsing_ (`--%`) and
206204
_end-of-parameters_ tokens (`--`) to stop PowerShell from interpreting input as
207205
PowerShell commands or expressions.
208206

209207
> [!NOTE]
210208
> The stop-parsing token is only intended for use on Windows platforms.
211209
210+
### The stop-parsing token
211+
212212
When calling a native command, place the stop-parsing token before the program
213213
arguments. This technique is much easier than using escape characters to
214214
prevent misinterpretation.
@@ -239,6 +239,8 @@ variable the token is passed through as-is.
239239
You cannot use stream redirection (like `>file.txt`) because they are passed
240240
verbatim as arguments to the target command.
241241

242+
### The end-of-parameters token
243+
242244
The end-of-parameters token (`--`) indicates that all arguments following it
243245
are to be passed in their actual form as though double quotes were placed
244246
around them. For example, using `--` you can output the string `-InputObject`

reference/7.3/Microsoft.PowerShell.Core/About/about_Parsing.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,15 @@ prevent PowerShell from misinterpreting the parentheses.
200200
icacls X:\VMS /grant Dom\HVAdmin:`(CI`)`(OI`)F
201201
```
202202

203-
### The stop-parsing and end-of-parameters tokens
204-
205203
Beginning in PowerShell 3.0, you can use the _stop-parsing_ (`--%`) and
206204
_end-of-parameters_ tokens (`--`) to stop PowerShell from interpreting input as
207205
PowerShell commands or expressions.
208206

209207
> [!NOTE]
210208
> The stop-parsing token is only intended for use on Windows platforms.
211209
210+
### The stop-parsing token
211+
212212
When calling a native command, place the stop-parsing token before the program
213213
arguments. This technique is much easier than using escape characters to
214214
prevent misinterpretation.
@@ -239,6 +239,8 @@ variable the token is passed through as-is.
239239
You cannot use stream redirection (like `>file.txt`) because they are passed
240240
verbatim as arguments to the target command.
241241

242+
### The end-of-parameters token
243+
242244
The end-of-parameters token (`--`) indicates that all arguments following it
243245
are to be passed in their actual form as though double quotes were placed
244246
around them. For example, using `--` you can output the string `-InputObject`

0 commit comments

Comments
 (0)