Skip to content

Escapes angle brackets in about_Requires #2075

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ functions, cmdlets, or snap-ins.

### PARAMETERS

-Version <N>[.<n>]
-Version \<N\>[.\<n\>]

Specifies the minimum version of Windows PowerShell that the script requires.
Enter a major version number and optional minor version number.
Expand All @@ -50,7 +50,7 @@ For example:
#Requires -Version 3.0
```

-PSSnapin <PSSnapin-Name> [-Version <N>[.<n>]]
-PSSnapin \<PSSnapin-Name\> [-Version \<N\>[.\<n\>]]

Specifies a Windows PowerShell snap-in that the script requires. Enter the
snap-in name and an optional version number.
Expand All @@ -61,7 +61,7 @@ For example:
#Requires -PSSnapin DiskSnapin -Version 1.2
```

-Modules <Module-Name> &#124; <Hashtable>
-Modules \<Module-Name\> &#124; \<Hashtable\>

Specifies Windows PowerShell modules that the script requires. Enter the
module name and an optional version number. The Modules parameter is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ functions, cmdlets, or snap-ins.

### PARAMETERS

-Version <N>[.<n>]
-Version \<N\>[.\<n\>]

Specifies the minimum version of Windows PowerShell that the script requires.
Enter a major version number and optional minor version number.
Expand All @@ -51,7 +51,7 @@ For example:
#Requires -Version 3.0
```

-PSSnapin <PSSnapin-Name> [-Version <N>[.<n>]]
-PSSnapin \<PSSnapin-Name\> [-Version \<N\>[.\<n\>]]

Specifies a Windows PowerShell snap-in that the script requires. Enter the
snap-in name and an optional version number.
Expand All @@ -62,7 +62,7 @@ For example:
#Requires -PSSnapin DiskSnapin -Version 1.2
```

-Modules <Module-Name> &#124; <Hashtable>
-Modules \<Module-Name\> &#124; \<Hashtable\>

Specifies Windows PowerShell modules that the script requires. Enter the
module name and an optional version number. The Modules parameter is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ functions, cmdlets, or snap-ins.

### PARAMETERS

-Version <N>[.<n>]
-Version \<N\>[.\<n\>]

Specifies the minimum version of Windows PowerShell that the script requires.
Enter a major version number and optional minor version number.
Expand All @@ -51,7 +51,7 @@ For example:
#Requires -Version 3.0
```

-PSSnapin <PSSnapin-Name> [-Version <N>[.<n>]]
-PSSnapin \<PSSnapin-Name\> [-Version \<N\>[.\<n\>]]

Specifies a Windows PowerShell snap-in that the script requires. Enter the
snap-in name and an optional version number.
Expand All @@ -62,7 +62,7 @@ For example:
#Requires -PSSnapin DiskSnapin -Version 1.2
```

-Modules <Module-Name> &#124; <Hashtable>
-Modules \<Module-Name\> &#124; \<Hashtable\>

Specifies Windows PowerShell modules that the script requires. Enter the
module name and an optional version number. The Modules parameter is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ functions, cmdlets, or snap-ins.

### PARAMETERS

-Version <N>[.<n>]
-Version \<N\>[.\<n\>]

Specifies the minimum version of Windows PowerShell that the script requires.
Enter a major version number and optional minor version number.
Expand All @@ -51,7 +51,7 @@ For example:
#Requires -Version 3.0
```

-PSSnapin <PSSnapin-Name> [-Version <N>[.<n>]]
-PSSnapin \<PSSnapin-Name\> [-Version \<N\>[.\<n\>]]

Specifies a Windows PowerShell snap-in that the script requires. Enter the
snap-in name and an optional version number.
Expand All @@ -62,7 +62,7 @@ For example:
#Requires -PSSnapin DiskSnapin -Version 1.2
```

-Modules <Module-Name> &#124; <Hashtable>
-Modules \<Module-Name\> &#124; \<Hashtable\>

Specifies Windows PowerShell modules that the script requires. Enter the
module name and an optional version number. The Modules parameter is
Expand Down
6 changes: 3 additions & 3 deletions reference/6/Microsoft.PowerShell.Core/About/about_Requires.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ functions, cmdlets, or snap-ins.

### PARAMETERS

-Version <N>[.<n>]
-Version \<N\>[.\<n\>]

Specifies the minimum version of Windows PowerShell that the script requires.
Enter a major version number and optional minor version number.
Expand All @@ -51,7 +51,7 @@ For example:
#Requires -Version 3.0
```

-PSSnapin <PSSnapin-Name> [-Version <N>[.<n>]]
-PSSnapin \<PSSnapin-Name\> [-Version \<N\>[.\<n\>]]

Specifies a Windows PowerShell snap-in that the script requires. Enter the
snap-in name and an optional version number.
Expand All @@ -62,7 +62,7 @@ For example:
#Requires -PSSnapin DiskSnapin -Version 1.2
```

-Modules <Module-Name> &#124; <Hashtable>
-Modules \<Module-Name\> &#124; \<Hashtable\>

Specifies Windows PowerShell modules that the script requires. Enter the
module name and an optional version number. The Modules parameter is
Expand Down