external help file: pshtml-help.xml Module Name: PSHTML online version: schema: 2.0.0
ol
SYNOPSIS
Create a ol tag in an HTML document.
SYNTAX
ol [[-Content] <Object>] [[-Class] <String>] [[-Id] <String>] [[-Style] <String>] [[-Attributes] <Hashtable>]
[-reversed] [[-start] <Int32>] [[-type] <String>] [<CommonParameters>]
DESCRIPTION
{{Fill in the Description}}
EXAMPLES
EXAMPLE 1
ol
EXAMPLE 2
ol -Content {li -Content "asdf"}
EXAMPLE 3
ol -Class "class" -Id "something" -Style "color:red;"
EXAMPLE 4
ol {li -Content "asdf"} -reversed -type a
Generates the following content
\<ol type="a" reversed > \<li> asdf \</li> \</ol>
PARAMETERS
-Content
{{Fill Content Description}}
Type: Object
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
-Class
{{Fill Class Description}}
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Id
{{Fill Id Description}}
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Style
{{Fill Style Description}}
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Attributes
{{Fill Attributes Description}}
Type: Hashtable
Parameter Sets: (All)
Aliases:
Required: False
Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-reversed
{{Fill reversed Description}}
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: 6
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
-start
{{Fill start Description}}
Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
Position: 7
Default value: 0
Accept pipeline input: False
Accept wildcard characters: False
-type
{{Fill type Description}}
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 8
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
INPUTS
OUTPUTS
NOTES
Current version 1.1 History: 2018.04.14;stephanevg;fix Content bug, Added parameter 'type'. Upgraded to v1.1. 2018.04.01;bateskevinhanevg;Creation.
RELATED LINKS
Information on the ol HTML tag can be found here --> https://www.w3schools.com/tags/tag_ol.asp