Skip to main content

Examples

A kitchen-sink page exercising every common Markdown and MDX element, so we can see what renders correctly and what breaks.

Text formatting

Regular text with bold, italic, bold italic, strikethrough, inline code, and an internal anchor link. Here is an external link to Docusaurus. Superscript and subscript: H2O and E = mc2.

Headings

Level 3 heading

Level 4 heading

Level 5 heading
Level 6 heading

Lists

Unordered

  • First item
  • Second item
    • Nested item
    • Another nested item
      • Deeply nested item
  • Third item

Ordered

  1. Step one
  2. Step two
    1. Sub-step a
    2. Sub-step b
  3. Step three

Task list

  • Completed task
  • Pending task
  • Another pending task

Blockquote

This is a blockquote.

And a nested blockquote inside it.

Code

Inline const x = 1 and a fenced block with a title:

example.js
function greet(name) {
// greet the caller
return `Hello, ${name}!`;
}

greet('mogumogu');
docker compose up -d --build

Syntax highlighting

One block per language to check Prism highlighting across the stack.

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

import "fmt"

func main() {
fmt.Println("Hello, mogumogu!")
}
main :: IO ()
main = putStrLn "Hello, mogumogu!"
let name = "mogumogu"
print("Hello, \(name)!")
<?php
echo "Hello, mogumogu!";
def greet(name: str) -> str:
return f"Hello, {name}!"
class Main {
public static void main(String[] args) {
System.out.println("Hello, mogumogu!");
}
}
fun main() {
println("Hello, mogumogu!")
}
SELECT id, variety FROM apple WHERE color = 'red' ORDER BY id;
service: rust-api
port: 8080
replicas: 2
[server]
host = "0.0.0.0"
port = 8080
query Apples {
apples(limit: 10) {
id
variety
}
}
 fn main() {
- println!("Hello, world!");
+ println!("Hello, mogumogu!");
}

Table

MethodPathDescription
GET/api/appleList apples
POST/api/appleCreate an apple
DELETE/api/apple/{id}Delete an apple

Admonitions

note

A note admonition for incidental information.

tip

A tip admonition for helpful advice.

info

An info admonition for neutral context.

warning

A warning admonition for things to be careful about.

danger

A danger admonition for critical warnings.

Media

mogumogu logo

Collapsible details

Click to expand

Hidden content revealed on toggle, including a code block:

{ "id": "apl_01", "variety": "Fuji" }

Horizontal rule


That's everything.