OpenGraph.types.ps1xml
<!-- 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> |