folderweb/app/default/content/examples/2024-12-15-markdown-demo/index.md
Ruben 0e19040473 Create a simple hero section with title, subtitle, and call-to-action
button Add a features section with icons and descriptions Include a
stats section with live data Add a responsive design with modern CSS
features
2025-11-27 21:31:47 +01:00

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:

  1. Step one
  2. Step two
  3. Step three

Here's a link to the homepage.

Images work too (when you add them to the folder):

Example image

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.