Example Documentation
This is an example markdown file to test the docs system.
Features
- Markdown rendering with GitHub Flavored Markdown
- Code syntax highlighting
- Tables and lists
- Math expressions (if enabled)
Code Example
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Table Example
| Feature | Status |
|---|---|
| Markdown | ✅ |
| Syntax Highlighting | ✅ |
| Math | ⏳ |
List Example
- First item
- Second item
- Nested item
- Another nested item
- Third item
This is a blockquote example.
That's all for now!