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

Example45 Scrolling

Source-owned example maintained with PSWriteHTML.

Import-Module .\PSWriteHTML.psd1 -Force

New-HTML {
    New-HTMLSectionScrolling {
        New-HTMLSectionScrollingItem -SectionTitle 'Test 1' {
            "<p>Test 1 Text</p>"
        }
        New-HTMLSectionScrollingItem -SectionTitle 'Test 2' {

        }
        New-HTMLSectionScrollingItem -SectionTitle 'Test 3' {
            # New-HTMLTable -DataTable 'Test'
        }
        New-HTMLSectionScrollingItem -SectionTitle 'Test 4' {

        }
        New-HTMLSectionScrollingItem -SectionTitle 'Test 5' {
            "<p>Test 5 Text</p>"

            New-HTMLSectionScrollingItem -SectionTitle 'Test 5.1' {
                "<p>Test 5.1 Text</p>"
                New-HTMLSectionScrollingItem -SectionTitle 'Test 5.1.1' {
                    "<p>Test 5.1.1 Text</p>"
                }
                New-HTMLSectionScrollingItem -SectionTitle 'Test 5.1.2' {
                    "<p>Test 5.1.2 Text</p>"
                }
            }

            New-HTMLSectionScrollingItem -SectionTitle 'Test 5.2' {
                "<p>Test 5.2 Text</p>"
            }
        }
        New-HTMLSectionScrollingItem -SectionTitle 'Test 6' {

        }
        New-HTMLSectionScrollingItem -SectionTitle 'Test 7' {
            New-HTMLSectionScrollingItem -SectionTitle 'Test 7.1' {
                "<p>Test 7.1 Text</p>"
            }
            New-HTMLSectionScrollingItem -SectionTitle 'Test 7.2' {
                "<p>Test 7.2 Text</p>"
            }
            New-HTMLSectionScrollingItem -SectionTitle 'Test 7.3' {
                "<p>Test 7.3 Text</p>"
            }
        }
    }

} -FilePath $PSScriptRoot\Example45-ScrolingText.html -Online -Format -ShowHTML