This page is a full markdown rendering sandbox for validating the post view styles.
Headings
H3 Example
H4 Example
H5 Example
H6 Example
Paragraphs and Formatting
Regular paragraph text with bold, italic, bold italic, strikethrough, and inline code.
A second paragraph with a link to the homepage and another external link.
This is a blockquote with emphasis and an inline
snippet.Second line of the same quote block.
Lists
Unordered List
- First bullet
- Second bullet with bold text
- Third bullet with nested items:
- Nested bullet A
- Nested bullet B
Ordered List
- First ordered item
- Second ordered item
- Third ordered item with nested list:
- Nested ordered item one
- Nested ordered item two
Task List
- Finished task
- Another completed task
- Pending task
- Pending task with
inline code
Horizontal Rule
Table
| Feature | Status | Notes |
|---|---|---|
| Headings | Good | All heading levels should look consistent |
| Lists | Good | Ordered, unordered, and nested |
| Checklists | Good | Includes checked and unchecked items |
| Code Blocks | Verify | Check background, spacing, and scrollbars |
Code Blocks
1#!/usr/bin/env bash
2set -euo pipefail
3
4echo "Hello from bash"
5for i in 1 2 3; do
6 echo "Item: $i"
7done
1def fibonacci(n: int) -> list[int]:
2 sequence = [0, 1]
3 while len(sequence) < n:
4 sequence.append(sequence[-1] + sequence[-2])
5 return sequence[:n]
6
7print(fibonacci(10))
1{
2 "site": "vmd1.dev",
3 "featureFlags": {
4 "toc": true,
5 "lineNumbers": true,
6 "copyButtons": true
7 }
8}
1<section class="card">
2 <h2>Sample HTML Block</h2>
3 <p>Check monospace font rendering and syntax colors.</p>
4</section>
Image
Definition-Like Paragraph
Term-like label: A short descriptive sentence that helps verify normal paragraph spacing after colon-style labels.
Escapes and Special Characters
Use escaped characters: *literal asterisk*, _literal underscore_, and `literal backtick`.
End of test document.
Loading comments...