Skip to content

Sample Page

This page demonstrates various features you can use in your wiki.

Text Formatting

This is a paragraph with bold text, italic text, and inline code.

You can also use highlighted text, strikethrough, and combine formats like bold italic.

Lists

Bullet list:

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

Numbered list:

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

Task list:

  • Completed task
  • Pending task
  • Another pending task

Admonitions

Important Note

This is an important note that readers should pay attention to.

Pro Tip

Here's a helpful tip for users!

Warning

Be careful with this operation.

Danger

This action cannot be undone!

Code Examples

Inline code: print("Hello, World!")

Code block with syntax highlighting:

def greet(name):
    """Greet someone by name."""
    return f"Hello, {name}!"

# Usage
message = greet("World")
print(message)

Tables

Feature Status Notes
Dark mode Fully supported
Search Built-in
Mobile Responsive design
PDF Export ⚠️ Optional plugin

Link to homepage
External link
Link with title

Images

Placeholder

Quotes

This is a blockquote. It can span multiple lines.

— Author Name

Horizontal Rule


Emoji

😄 🚀 ❤ 🎉 🔥

Tabs

Content for tab 1

Content for tab 2

Content for tab 3

Diagrams

graph LR
    A[Start] --> B{Decision}
    B -->|Yes| C[Action 1]
    B -->|No| D[Action 2]
    C --> E[End]
    D --> E

This sample page demonstrates the most common features. Explore other documentation pages to learn more!