button Add a features section with icons and descriptions Include a stats section with live data Add a responsive design with modern CSS features
1.3 KiB
1.3 KiB
Markdown Demonstration
This page shows the full range of Markdown formatting available through Parsedown.
Text Formatting
You can use bold text, italic text, and even bold italic.
Use inline code for technical terms or file paths like /app/default/templates/.
Lists
Unordered lists:
- First item
- Second item
- Nested item
- Another nested item
- Third item
Ordered lists:
- Step one
- Step two
- Step three
Links and Images
Here's a link to the homepage.
Images work too (when you add them to the folder):
Code Blocks
<?php
function greet(string $name): string {
return "Hello, {$name}!";
}
echo greet('World');
Blockquotes
This is a blockquote. Perfect for highlighting important information or quotes from other sources.
It can span multiple paragraphs.
Tables
| Feature | Status |
|---|---|
| Markdown | ✓ |
| HTML | ✓ |
| PHP | ✓ |
| JavaScript | ✗ |
Horizontal Rules
That line above is a horizontal rule, useful for separating sections.
What You Can Do
- Write content in simple Markdown
- Mix HTML when needed
- Include images stored alongside your content
- Use all standard Markdown features
The file for this page is just index.md in a dated folder. The date is automatically extracted and displayed.
