Dev's Docs

Demo Markdown File

This is a demo Markdown file showcasing various Markdown elements. It is intended to help you test and style your MDX setup.

Below, you will find examples of headings, text formatting, lists, links, images, code, tables, blockquotes, and horizontal rules.

Headings

Markdown supports six levels of headings, from H1 to H6. Here are examples of each:

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Text Formatting

You can emphasize text using bold, italic, and strikethrough formatting:

  • Bold text: Use double asterisks or underscores (**text** or __text__).
  • Italic text: Use single asterisks or underscores (*text* or _text_).
  • Strikethrough text: Use double tildes (~~text~~).

Lists

Markdown supports both unordered and ordered lists, as well as nested lists for hierarchical content.

Unordered List

  • Item 1
  • Item 2
  • Item 3

Ordered List

  1. First item
  2. Second item
  3. Third item

Nested List

  • Parent item
    • Child item 1
    • Child item 2
      • Grandchild item

Add clickable links to external or internal resources:

Images

Embed images with optional alt text for accessibility:

Image support is there but not working as expected.

Code

Showcase code snippets using inline code or fenced code blocks.

  • Inline code: Use backticks to write console.log('Hello, world!');.
  • Fenced code block: Use triple backticks with an optional language identifier for syntax highlighting.

JavaScript

function greet() {
  console.log("Hello, world!");
}

Python

def greet():
  print("Hello, world!")

Rust

fn main() {
  println!("Hello, world!");
}

Tables

NameAgeOccupation
John Doe30Software Engineer
Jane Smith25Data Scientist
Alice Johnson35Designer

Blockquotes

This is a single-line blockquote.

Nested Blockquotes

This is the first level of blockquote.

This is a nested blockquote inside the first one.

On this page