Skip to content

Commit f09ce0b

Browse files
authored
Change H2 case in about articles (#12391)
* Upcase H2 headers * Fix structure of About files * Change H2 case in about articles * Fix bookmarks
1 parent 93d691f commit f09ce0b

File tree

601 files changed

+5183
-5152
lines changed

Some content is hidden

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

601 files changed

+5183
-5152
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@ title: about_ANSI_Terminals
77
---
88
# about_ANSI_Terminals
99

10-
## SHORT DESCRIPTION
10+
## Short description
11+
1112
Describes the support available for ANSI escape sequences in Windows PowerShell.
1213

13-
## LONG DESCRIPTION
14+
## Long description
1415

1516
Unlike newer versions of PowerShell, the Windows PowerShell 5.1 engine and core
1617
cmdlets don't output ANSI escape sequences to format the text displayed on your
1718
screen. However, that doesn't prevent you from using ANSI escape sequences for
1819
text formatting in terminals that support it.
1920

20-
## ANSI TERMINAL SUPPORT
21+
## ANSI Terminal support
2122

2223
On Windows 10 and higher, the Windows Console Host is [xterm][02] compatible.
2324
The [Windows Terminal][03] application is also xterm compatible. These
@@ -31,7 +32,7 @@ The default colors were chosen for use with terminals that have a dark
3132
background. You can change the colors needed for your environment. For more
3233
information, see [Customizing your shell experience][01].
3334

34-
## REDIRECTING OUTPUT
35+
## Redirecting output
3536

3637
You should be careful about creating output that's decorated with ANSI escape
3738
sequences. The formatting is intended for display in the terminal. When you

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

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,19 @@ title: about_Alias_Provider
99
---
1010
# about_Alias_Provider
1111

12-
## PROVIDER NAME
12+
## Provider name
1313

1414
Alias
1515

16-
## DRIVES
16+
## Drives
1717

1818
`Alias:`
1919

20-
## CAPABILITIES
20+
## Capabilities
2121

2222
**ShouldProcess**
2323

24-
## SHORT DESCRIPTION
25-
26-
Provides access to the PowerShell aliases and the values that they represent.
27-
28-
## DETAILED DESCRIPTION
24+
## Detailed description
2925

3026
The PowerShell **Alias** provider lets you get, add, change, clear, and delete
3127
aliases in PowerShell.
@@ -58,12 +54,12 @@ cmdlets.
5854
- [New-Alias][10]
5955
- [Set-Alias][11]
6056

61-
## TYPES EXPOSED BY THIS PROVIDER
57+
## Types exposed by this provider
6258

6359
Each alias is an instance of the [System.Management.Automation.AliasInfo][12]
6460
class.
6561

66-
## NAVIGATING THE ALIAS DRIVE
62+
## Navigating the alias drive
6763

6864
The **Alias** provider exposes its data store in the `Alias:` drive. To work
6965
with aliases, you can change your location to the `Alias:` drive by using the
@@ -86,8 +82,8 @@ path.
8682
> [!NOTE]
8783
> PowerShell uses aliases to allow you a familiar way to work with provider
8884
> paths. Commands such as `dir` and `ls` are now aliases for
89-
> [Get-ChildItem][13], `cd` is an alias for [Set-Location][02], and `pwd` is an
90-
> alias for [Get-Location][01].
85+
> [Get-ChildItem][13], `cd` is an alias for [Set-Location][02], and `pwd` is
86+
> an alias for [Get-Location][01].
9187
9288
### Displaying the Contents of the Alias: drive
9389

@@ -139,7 +135,7 @@ cmdlet name.
139135
Get-Item -Path Alias:* | Where-Object {$_.Definition -eq "Get-ChildItem"}
140136
```
141137

142-
## CREATING ALIASES
138+
## Creating aliases
143139

144140
### Create an alias from the Alias: drive
145141

@@ -181,7 +177,7 @@ function CD32 {Set-Location -Path C:\windows\system32}
181177
Set-Item -Path Alias:go -Value CD32
182178
```
183179

184-
## CHANGING ALIASES
180+
## Changing aliases
185181

186182
### Change the options of an alias
187183

@@ -226,7 +222,7 @@ This command uses the `Rename-Item` cmdlet to change the `popd` alias to `pop`.
226222
Rename-Item -Path Alias:popd -NewName pop
227223
```
228224

229-
## COPYING AN ALIAS
225+
## Copying an alias
230226

231227
This command copies the `pushd` alias so that a new `push` alias is created for
232228
the `Push-Location` cmdlet.
@@ -240,7 +236,7 @@ the `-Path` parameter.
240236
Copy-Item -Path Alias:pushd -Destination Alias:push
241237
```
242238

243-
## DELETING AN ALIAS
239+
## Deleting an alias
244240

245241
This command deletes the `serv` alias from the current session.
246242
You can use this command in any PowerShell drive.
@@ -267,7 +263,7 @@ allows the command to delete aliases whose **Options** property has a value of
267263
Remove-Item Alias:* -Force
268264
```
269265

270-
## DYNAMIC PARAMETERS
266+
## Dynamic parameters
271267

272268
Dynamic parameters are cmdlet parameters that are added by a PowerShell
273269
provider and are available only when the cmdlet is being used in the
@@ -292,14 +288,14 @@ Determines the value of the **Options** property of an alias.
292288
- [New-Item][04]
293289
- [Set-Item][14]
294290

295-
## USING THE PIPELINE
291+
## Using the pipeline
296292

297293
Provider cmdlets accept pipeline input. You can use the pipeline to simplify
298294
task by sending provider data from one cmdlet to another provider cmdlet.
299295
To read more about how to use the pipeline with provider cmdlets, see the
300296
cmdlet references provided throughout this article.
301297

302-
## GETTING HELP
298+
## Getting help
303299

304300
Beginning in Windows PowerShell 3.0, you can get customized help topics for
305301
provider cmdlets that explain how those cmdlets behave in a file system drive.
@@ -316,7 +312,7 @@ Get-Help Get-ChildItem
316312
Get-Help Get-ChildItem -Path Alias:
317313
```
318314

319-
## SEE ALSO
315+
## See also
320316

321317
- [about_Aliases][16]
322318
- [about_Providers][17]

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ title: about_Aliases
99
---
1010
# about_Aliases
1111

12-
## SHORT DESCRIPTION
12+
## Short description
1313

1414
Describes how to use alternate names for cmdlets and commands in PowerShell.
1515

16-
## LONG DESCRIPTION
16+
## Long description
1717

1818
An alias is an alternate name or nickname for a cmdlet or for a command
1919
element, such as a function, script, file, or executable file. You can use the
@@ -47,7 +47,7 @@ If you create `word` as the alias for Microsoft Office Word, you can type
4747
"C:\Program Files\Microsoft Office\Office11\Winword.exe"
4848
```
4949

50-
## BUILT-IN ALIASES
50+
## Built-in aliases
5151

5252
PowerShell includes a set of built-in aliases, including `cd` and `chdir` for
5353
the `Set-Location` cmdlet, and `ls` and `dir` for the `Get-ChildItem` cmdlet.
@@ -58,7 +58,7 @@ To get all the aliases on the computer, including the built-in aliases, type:
5858
Get-Alias
5959
```
6060

61-
## ALIAS CMDLETS
61+
## Alias cmdlets
6262

6363
PowerShell includes the following cmdlets, which are designed for working with
6464
aliases:
@@ -117,7 +117,7 @@ For more information, type:
117117
Get-Help about_Profiles
118118
```
119119

120-
## GETTING ALIASES
120+
## Getting aliases
121121

122122
To get all the aliases in the current session, including the built-in aliases,
123123
the aliases in your PowerShell profiles, and the aliases that you have created
@@ -164,7 +164,7 @@ hyphen. These are likely to be preferred substitute names for cmdlets and
164164
functions, instead of typical abbreviations or nicknames, and the author might
165165
not want them to be as evident.
166166

167-
## ALTERNATE NAMES FOR COMMANDS WITH PARAMETERS
167+
## Alternate names for commands with parameters
168168

169169
You can assign an alias to a cmdlet, script, function, or executable file. You
170170
cannot assign an alias to a command and its parameters. For example, you can
@@ -192,7 +192,7 @@ For more information about functions, type:
192192
Get-Help about_Functions
193193
```
194194

195-
## ALIAS OBJECTS
195+
## Alias objects
196196

197197
PowerShell aliases are represented by objects that are instances of the
198198
System.Management.Automation.AliasInfo class. For more information about this
@@ -216,7 +216,7 @@ the `dir` alias. The following command performs these tasks:
216216
Get-Alias -Name dir | Format-List -Property *
217217
```
218218

219-
## POWERSHELL ALIAS PROVIDER
219+
## PowerShell Alias provider
220220

221221
PowerShell includes the Alias provider. The Alias provider lets you view the
222222
aliases in PowerShell as though they were on a file system drive.
@@ -255,7 +255,7 @@ For more information about the PowerShell Alias provider, type:
255255
Get-Help Alias
256256
```
257257

258-
## SEE ALSO
258+
## See also
259259

260260
- [about_Functions](about_Functions.md)
261261
- [about_Profiles](about_Profiles.md)

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ title: about_Arithmetic_Operators
88
---
99
# about_Arithmetic_Operators
1010

11-
## SHORT DESCRIPTION
11+
## Short description
1212

1313
Describes the operators that perform arithmetic in PowerShell.
1414

15-
## LONG DESCRIPTION
15+
## Long description
1616

1717
Arithmetic operators calculate numeric values. You can use one or more
1818
arithmetic operators to add, subtract, multiply, and divide values, and to
@@ -631,7 +631,7 @@ unsigned values, a zero is inserted in the left-most position.
631631
| `(-21 -shr 1)` | -11 | 11111111111111111111111111110101 | 0xFFFFFFF5 |
632632
| `(-21 -shr 2)` | -6 | 11111111111111111111111111111010 | 0xFFFFFFF4 |
633633

634-
## SEE ALSO
634+
## See also
635635

636636
- [about_Arrays](about_Arrays.md)
637637
- [about_Hash_Tables](about_Hash_Tables.md)

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ title: about_Arrays
99
---
1010
# about_Arrays
1111

12-
## SHORT DESCRIPTION
12+
## Short description
1313

1414
Describes arrays, which are data structures designed to store collections of
1515
items.
1616

17-
## LONG DESCRIPTION
17+
## Long description
1818

1919
An array is a data structure that's designed to store a collection of items.
2020
The items can be the same type or different types.
2121

2222
Beginning in Windows PowerShell 3.0, a collection of zero or one object has
2323
some properties of arrays.
2424

25-
## CREATING AND INITIALIZING AN ARRAY
25+
## Creating and initializing an array
2626

2727
To create and initialize an array, assign multiple values to a variable. The
2828
values stored in the array are delimited with a comma and separated from the
@@ -82,7 +82,7 @@ process objects, enter the following command:
8282
[Diagnostics.Process[]]$zz = Get-Process
8383
```
8484

85-
## THE ARRAY SUB-EXPRESSION OPERATOR
85+
## The array subexpression operator
8686

8787
The array sub-expression operator creates an array from the statements inside
8888
it. Whatever the statement inside the operator produces, the operator places it
@@ -125,7 +125,7 @@ $p = @(Get-Process Notepad)
125125
For more information about the array sub-expression operator, see
126126
[about_Operators][11].
127127

128-
## ACCESSING AND USING ARRAY ELEMENTS
128+
## Accessing and using array elements
129129

130130
### Reading an array
131131

@@ -338,7 +338,7 @@ while($i -lt 4) {
338338
3
339339
```
340340

341-
## PROPERTIES OF ARRAYS
341+
## Properties of arrays
342342

343343
### Count or Length or LongLength
344344

@@ -463,7 +463,7 @@ True
463463
40
464464
```
465465

466-
## METHODS OF ARRAYS
466+
## Methods of arrays
467467

468468
### Clear
469469

@@ -803,7 +803,7 @@ Stopped AppIDSvc Application Identity
803803
> Both `ForEach()` and `Where()` methods are intrinsic members. For more
804804
> information about intrinsic members, see [about_Intrinsic_Members][08].
805805
806-
## GET THE MEMBERS OF AN ARRAY
806+
## Get the members of an array
807807

808808
To get the properties and methods of an array, such as the **Length** property
809809
and the **SetValue** method, use the **InputObject** parameter of the
@@ -833,7 +833,7 @@ and `Get-Member` returns the members of the array. Like the next two examples.
833833
,(1,2,3) | Get-Member
834834
```
835835

836-
## MANIPULATING AN ARRAY
836+
## Manipulating an array
837837

838838
You can change the elements in an array, add an element to an array, and
839839
combine the values from two arrays into a third array.
@@ -899,7 +899,7 @@ command deletes the array in the `$a` variable.
899899
You can also use the `Remove-Item` cmdlet, but assigning a value of `$null` is
900900
faster, especially for large arrays.
901901

902-
## ARRAYS OF ZERO OR ONE
902+
## Arrays of zero or one
903903

904904
Beginning in Windows PowerShell 3.0, a scalar types and collection of zero or
905905
one objects has the **Count** and **Length** properties. Also, you can use
@@ -984,7 +984,7 @@ PS> $result[0].Length
984984

985985

986986

987-
## INDEXING .NET TYPES THAT IMPLEMENT `IDICTIONARY<TKEY, TVALUE>`
987+
## Indexing .NET types that implement `IDictionary<TKey, TValue>`
988988

989989
PowerShell doesn't call a type's true indexer for types that implement the
990990
generic `IDictionary<TKey, TValue>` interface. Instead, when given a key,
@@ -1009,7 +1009,7 @@ At line:1 char:1
10091009
+ FullyQualifiedErrorId : ExceptionWhenGetting
10101010
```
10111011

1012-
## MEMBER-ACCESS ENUMERATION
1012+
## Member-access enumeration
10131013

10141014
Starting in PowerShell 3.0, when you use the member-access operator to access a
10151015
member that doesn't exist on a list collection, PowerShell automatically
@@ -1090,7 +1090,7 @@ LastWriteTimeUtc Property datetime LastWriteTimeUtc {get;set;}
10901090
> Since the method is executed for each item in the collection, care should be
10911091
> taken when calling methods using member enumeration.
10921092
1093-
## SEE ALSO
1093+
## See also
10941094

10951095
- [about_For][05]
10961096
- [about_Foreach][06]

0 commit comments

Comments
 (0)