-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenGraph.types.ps1xml
35 lines (34 loc) · 1.28 KB
/
OpenGraph.types.ps1xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!-- Generated with EZOut 2.0.6: Install-Module EZOut or https://github.com/StartAutomating/EZOut -->
<Types>
<Type>
<Name>OpenGraph</Name>
<Members>
<ScriptProperty>
<Name>HTML</Name>
<GetScriptBlock>
@(if ($this -is [Management.Automation.PSModuleInfo]) {
if ($this.Description) {
"<meta name='description' content='$([Web.HttpUtility]::HtmlAttributeEncode($this.Description))' />"
}
if ($this.Author) {
"<meta name='article:author' content='$([Web.HttpUtility]::HtmlAttributeEncode($this.Author))' />"
}
if ($this.PrivateData.PSData.IconUri) {
"<meta property='og:image' content='$([Web.HttpUtility]::HtmlAttributeEncode($this.PrivateData.PSData.IconUri))' />"
}
} else {
foreach ($property in $this.PSObject.Properties) {
if ($property.Name -match ':') {
$value = $property.Value
if ($value -is [DateTime]) {
$value = $value.ToUniversalTime().ToString('o')
}
"<meta property='$($property.Name)' content='$([Web.HttpUtility]::HtmlAttributeEncode($value))' />"
}
}
}) -join [Environment]::Newline
</GetScriptBlock>
</ScriptProperty>
</Members>
</Type>
</Types>