This page demonstrates markdown features across different flavors. Not every static site generator supports all of these!
This is bold, this is italic, and this is both. This is
inline code. This is struck through.
This is a blockquote.
This is a nested blockquote.
| Module | Version | Downloads |
|---|---|---|
| Pester | 5.7.1 | 52M |
| PSScriptAnalyzer | 1.23.0 | 38M |
| Az | 13.0.0 | 32M |
| PSReadLine | 2.4.0 | 25M |
# PowerShell
Get-Process | Where-Object CPU -gt 100 | Sort-Object CPU -Descending
# Python (for the MkDocs fans)
import subprocess
result = subprocess.run(["pwsh", "-c", "Get-Date"], capture_output=True)
print(result.stdout.decode())
# YAML front matter example
title: My Page
date: 2026-02-15
tags:
- demo
PowerShell was originally called Monad 1. It was created by Jeffrey Snover 2.
graph LR
A[Write Markdown] --> B{Choose Generator}
B --> C[Jekyll]
B --> D[MkDocs]
B --> E[Hugo]
B --> F[Docusaurus]
B --> G[Astro]
C --> H[Static Site]
D --> H
E --> H
F --> H
G --> H
H --> I[Deploy!]
Inline math: $E = mc^2$
Block math:
\[\sum_{i=1}^{n} \frac{1}{i} \approx \ln(n) + \gamma\]