Document Cmdlets

Use these cmdlets to compose document structure:

  • New-HtmlX
  • New-HtmlXPage
  • New-HtmlXSection
  • New-HtmlXContainer
  • New-HtmlXRow
  • New-HtmlXColumn
New-HtmlX -Title "Operations Summary" -FilePath .\operations.html {
    New-HtmlXPage {
        New-HtmlXSection -Title "Overview" {
            New-HtmlXText -Text "Generated from PowerShell." -Style Muted
        }
    }
}

See complete syntax and parameter sets in /api/powershell/ .