Hetzner Dedicated MDX Page

test
codebase test

Markdown Syntax Test

This document is designed to test Markdown support in your web application. It includes all standard syntax elements and four code fences for bash, TypeScript, Flutter, and JSON.

Headings

Heading Level 3

Heading Level 4

Heading Level 5
Heading Level 6

Paragraphs

This is a paragraph. It has two sentences.

This is another paragraph. It is separated by a blank line.

Emphasis

  • Italic text using asterisks

  • Italic text using underscores

  • Bold text using double asterisks

  • Bold text using double underscores

  • Bold and italic text using triple asterisks

  • Bold and italic text using triple underscores

Blockquotes

This is a blockquote.

It can span multiple lines.

Lists

Unordered List

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Ordered List

  1. First item
  2. Second item
    1. Subitem 2.1
    2. Subitem 2.2
  3. Third item

Code Blocks

Inline Code

Use the printf() function.

Code Fences

Bash

#!/bin/bash
echo "Hello, World!"

TypeScript

function greet(name: string): string {
    return `Hello, ${name}!`;
}

Flutter

import 'package:flutter/material.dart';
 
void main() => runApp(MyApp());
 
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(home: Text('Hello, Flutter!'));
  }
}

JSON

{
  "name": "John Doe",
  "age": 30,
  "isEmployed": true
}

Horizontal Rule


This is a link to OpenAI.

Images

Alt text for image

Tables

SyntaxDescription
HeaderTitle
ParagraphText

Task List

  • Completed task
  • Incomplete task

Strikethrough

This text is crossed out.

Footnotes

This is a sentence with a footnote.1

Escape Characters

This text is not italicized because the asterisk is escaped.

Emoji

Here is a smiley face: 😄

Footnotes

  1. This is the footnote. ↩