π§ 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¶
- Login to cPanel
- Create Email Account
- 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
π Links¶
DigitalHQ Docs Official cPanel Documentation
πΌοΈ Images¶
You can embed screenshots:

Or add local images like:

π€ 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:
π References¶
β 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 serveto see changes instantly