🧭 Sample Markdown Page

This page demonstrates all common Markdown and Material for MkDocs formatting features. Use it to test styling, syntax highlighting, tables, lists, callouts, and more.


🧩 Headings

H1 β€” Page Title

H2 β€” Section Title

H3 β€” Subsection

H4 β€” Sub-subsection

You’ll see these appear in the right-hand Table of Contents (ToC).


✍️ Basic Formatting

Bold text Italic text ~~Strikethrough~~ Inline code Highlighted text

You can also use HTML tags in Markdown.


🧱 Code Blocks

Inline

Example: print("Hello, World!")

Multiline Code Block

def greet(name):
    print(f"Hello, {name}!")

greet("DigitalHQ")

Syntax Highlighting

# Terminal example
pip install mkdocs-material
mkdocs serve

πŸ“‹ Lists

Ordered List

  1. Login to cPanel
  2. Create Email Account
  3. Configure Outlook

Unordered List

  • Apple Mail
  • Thunderbird
  • Outlook (Mobile)

Nested List

  • Security Features:
  • SPF
  • DKIM
  • DMARC

πŸ“¦ Tables

Feature Description Status
IMAP Keeps mail synced across devices βœ…
POP3 Downloads emails to one device ⚠️
SMTP Sends outbound messages βœ…

🧠 Admonitions (Callouts)

!!! note This is a Note block. Use it to highlight additional information.

!!! tip This is a Tip block. Perfect for shortcuts or best practices.

!!! warning This is a Warning block. Use for security or configuration alerts.

!!! danger This is a Danger block β€” typically used for irreversible actions like account deletion.

!!! example This shows how to connect your mailbox to Outlook.


πŸ”’ Task Lists

  • [x] Install Python
  • [x] Install MkDocs
  • [ ] Configure DNS records
  • [ ] Add DKIM keys

🧭 Tabs (using pymdownx.tabbed)

=== "Windows"

1. Open Outlook
2. Add Account
3. Use IMAP Settings

=== "Mac"

1. Open Apple Mail
2. Add New Account
3. Enter Server Details

=== "Linux"

1. Use Thunderbird
2. IMAP: `mail.yourdomain.com`
3. SMTP: `mail.yourdomain.com`

🧩 Collapsible Sections (Details)

??? info "Click to expand troubleshooting tips"

- Verify IMAP/SMTP settings
- Reset your email password
- Check MX records in cPanel

DigitalHQ Docs Official cPanel Documentation


πŸ–ΌοΈ Images

You can embed screenshots:

Example Screenshot

Or add local images like:

![Logo](../assets/logo.png)

πŸ”€ Keyboard Shortcuts

Press Ctrl + S to save changes. Press Cmd + K to open search in Material theme.


πŸ§ͺ Quotes and Blockquotes

β€œTime’s true pace is measured not by the Earth's rotation, but by the speed of the moments that shape our lives.”

β€” DigitalHQ Documentation Team


🧰 Footnotes

Here’s a sentence with a footnote reference[^1].

[^1]: This is the footnote text that appears at the bottom.


βš™οΈ Definition Lists

Email Protocols : IMAP, POP3, and SMTP β€” used to send and receive emails.

Spam Filters : Tools like SpamAssassin that detect and filter junk mail.


🧾 HTML Embeds

You can also mix HTML directly:

Example: HTML inside Markdown works too!

πŸ“š References

  1. MkDocs Official Documentation
  2. Material for MkDocs
  3. cPanel Documentation

βœ… Summary

  • This page contains every major Markdown element
  • You can use it to test your theme, fonts, spacing, and ToC
  • Try editing and saving with mkdocs serve to see changes instantly