Evotec

Project

PSWriteHTML

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

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

New-HTMLMermeidChart

Aliases: New-HTMLMermeid
Namespace PSWriteHTML
Aliases
New-HTMLMermeid

Creates a new HTML Mermaid chart.

Remarks

This function creates a new HTML Mermaid chart based on the provided Markdown scriptblock.

Examples

Authored help example

EXAMPLE 1


New-HTMLMermeidChart -Markdown { @"
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
"@ }
        

This example creates a simple flowchart with nodes A, B, C, and D connected by arrows.

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

New-HTMLMermeidChart [-Markdown <ScriptBlock>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Markdown ScriptBlock optionalposition: 0pipeline: False
The Markdown scriptblock containing the Mermaid chart definition.