Theme Demo
This section showcases all the UI elements styled by the dark theme. Use these pages to see how different AsciiDoc elements render in both light and dark modes.
| Use the theme toggle button in the navbar (sun/moon icon) to switch between light and dark modes. |
Demo Pages
| Page | Description |
|---|---|
Headings, paragraphs, inline formatting, and links |
|
Syntax-highlighted source code examples |
|
Note, tip, warning, caution, and important blocks |
|
Various table layouts and styles |
|
Sidebars, examples, quotes, and literal blocks |
|
Ordered, unordered, and description lists |
|
Image blocks and figure captions |
|
Tabs, diagrams, math, embeds, and third-party integrations |
Quick Code Example
// Toggle dark mode programmatically
function toggleTheme() {
document.documentElement.classList.toggle('dark-theme');
}
| For installation and usage instructions, see Getting Started. |