Markdown Features Guide
NCMDS supports standard Markdown plus extended features for richer documentation.
📝 Basic Syntax
Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Text Formatting
**Bold text**
*Italic text*
***Bold and italic***
~~Strikethrough~~
`Inline code`
Result:
Bold text
Italic text
Bold and italic
~~Strikethrough~~
Inline code
Lists
Unordered Lists:
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
Ordered Lists:
1. First item
2. Second item
3. Third item
Links
[Link text](https://example.com)
[Link with title](https://example.com "Title")
Images


💻 Code Blocks
Inline Code
Use backticks for inline code: `code here`
Fenced Code Blocks
Use triple backticks with optional language specification:
Python: ```python def hello_world(): print("Hello, NCMDS!") return True
hello_world() ```
JavaScript:
``javascript
const greet = (name) => {
console.log(Hello, ${name}!`);
};
greet("World"); ```
Bash: ```bash
!/bin/bash
echo "Hello, NCMDS!" cd /path/to/project python ncmds.py ```
📊 Tables
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Data 1 | Data 2 | Data 3 |
| Data 4 | Data 5 | Data 6 |
Result:
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Data 1 | Data 2 | Data 3 |
| Data 4 | Data 5 | Data 6 |
Alignment:
| Left | Center | Right |
|:-----|:------:|------:|
| L1 | C1 | R1 |
| L2 | C2 | R2 |
📌 Blockquotes
> This is a blockquote
>
> It can span multiple lines
> Nested quotes
>> Level 2
>>> Level 3
Result:
This is a blockquote
It can span multiple lines
🔗 Horizontal Rules
---
✅ Task Lists
- [x] Completed task
- [ ] Incomplete task
- [ ] Another task
Result: - [x] Completed task - [ ] Incomplete task - [ ] Another task
🎯 Admonitions
NCMDS supports admonitions for highlighting important information:
!!! note
This is a note admonition
!!! warning
This is a warning admonition
!!! danger
This is a danger admonition
!!! tip
This is a tip admonition
GitHub-style alert syntax is also supported:
!!! note
This is a note.
!!! tip
Helpful advice.
!!! important
Critical information.
!!! warning
Be careful about this.
!!! caution
Potential negative consequences.
Important
Use Python 3.8+ and install dependencies in a virtual environment for the best experience.
📋 Document Metadata
Add metadata at the beginning of your document:
---
order: 10
title: "My Custom Title"
author: "Your Name"
date: "2026-02-16"
tags:
- api
- auth
- security
difficulty: "intermediate"
owner: "backend-team"
writer: "alice"
---
# Document content starts here
Extended metadata behavior:
tags: renders page tags and enables search filtering (tag:api)difficulty: renders a difficulty chip and supports search filtering (difficulty:intermediate)owner: renders document owner and supports search filtering (owner:backend-team)writer: renders writer chip and supports search filtering (writer:alice)writter: alias supported for compatibility with legacy/typo metadata
Note: Each document also automatically displays its file modification date ("Last updated") in the page header.
🛡️ Shields.io Badges
NCMDS automatically detects shields.io badge images and styles them as a horizontal badge row:


🔗 Auto-Linked URLs
Plain URLs in your Markdown text are automatically converted to clickable links. URLs inside code blocks and inline code are left untouched.
🎨 HTML Support
You can use HTML within Markdown for advanced formatting:
<div style="background: #f0f0f0; padding: 20px; border-radius: 8px;">
<h3>Custom HTML Block</h3>
<p>You can use HTML for special formatting.</p>
</div>
🔤 Escaping Characters
Use backslash to escape special characters:
\* Not italic \*
\` Not code \`
\# Not a heading
💡 Best Practices
- Use descriptive headings - Clear hierarchy improves navigation
- Add code language - Syntax highlighting improves readability
- Keep paragraphs short - Easier to read and scan
- Use lists - Break down complex information
- Include examples - Show, don't just tell
- Add alt text to images - Improves accessibility
- Use tables wisely - Great for structured data
- Test your markdown - Preview before publishing
📚 Supported Extensions
NCMDS supports these Markdown extensions:
fenced_code- Code blocks with syntax highlightingtables- Table supporttoc- Table of contents generationcodehilite- Code highlightingattr_list- Add attributes to elementsmd_in_html- Markdown inside HTMLadmonition- Admonition blocksmeta- Document metadata
🔧 Tips and Tricks
Linking to Other Docs
See the [Configuration Guide](03-configuration.md)
Table of Contents
TOC is automatically generated from headings.
Code Block Titles
Some code blocks can have titles:
```python title="example.py" def main(): print("Hello!")
### Nested Lists
```markdown
1. First level
- Second level
- Third level
- Fourth level
🎓 Learning Resources
📖 Next Steps
- Explore Theme Customization
- Learn about Deployment
- Check out Configuration Options