Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars1015
Forks112
Open issues54
PowerShell Gallery downloads7576901
Releasev1.41.0
Language: PowerShell Updated: 2026-08-10T20:00:10.0000000+00:00

Curated Examples

Example Hierarchicallayout02

Source-owned example maintained with PSWriteHTML.

Import-Module .\PSWriteHTML.psd1 -Force

New-HTML -TitleText 'My diagram' -FilePath $PSScriptRoot\Example-HierarchicalLayout02.html {
    New-HTMLDiagram -Height '1000px' {
        New-DiagramOptionsLayout -HierarchicalEnabled $true -HierarchicalDirection FromUpToDown #-HierarchicalSortMethod directed
        New-DiagramOptionsPhysics -Enabled $false
        New-DiagramNode -Label 'One node' -ColorBackground Bisque -Level 1
        New-DiagramNode -Label 'Second node' -Level 1
        New-DiagramNode -Label 'Third node' -IconBrands amazon -IconColor Brown -Level 3
        New-DiagramNode -Label 'Fourth node' -IconRegular building -IconColor Brown -Level 4
        New-DiagramNode -Label 'Fifth node' -IconSolid align-left -IconColor Brown -Level 4
        New-DiagramNode -Level 4 -Label 'Bart Simson' -Image 'https://cdn.imgbin.com/5/2/1/imgbin-bart-simpson-homer-simpson-supreme-drawing-bart-simpson-bard-simpsons-jAfrtPtYNPTK5rQrcKULn5XBn.jpg' -To 'Second node'
        New-DiagramLink -Label 'Super Connection' -From 'Fourth node' -To 'Bart Simson'
        New-DiagramLink -From 'One node' -To 'Second Node'
        New-DiagramLink -From 'One node' -To 'Third node'
        New-DiagramLink -From 'Third node' -To 'Fourth node'
        New-DiagramLink -From 'Fifth node' -To 'Bart Simson'
    }
} -ShowHTML -Online