This page demonstrates advanced markdown and HTML integration.
Markdown Features
Tables
| Feature | Status | Notes |
|---|---|---|
| Markdown | ✅ | Fully supported |
| HTML mixing | ✅ | Admin content only |
| Code blocks | ✅ | Syntax highlighting |
| Tables | ✅ | Clean formatting |
Text Formatting
- Bold text
- Italic text
Strikethrough- Highlighted text
inline code
Custom HTML Elements
Information Box
This is a custom HTML block mixed with markdown formatting.
🚀 Pro Feature
Admin users can create rich documentation with full HTML support!
Code Block Example
// Forum timestamp handling
function updateTimestamps() {
const elements = document.querySelectorAll('.timestamp');
elements.forEach(el => {
const timestamp = parseInt(el.dataset.timestamp);
const date = new Date(timestamp * 1000);
el.textContent = date.toLocaleDateString();
});
}
Links and Navigation
Created with ❤️ using Django + Mistune