Feature Showcase¶
This page demonstrates the full range of AsciiDoc features supported by the backend.
Inline Formatting¶
AsciiDoc supports bold, italic, monospace, bold italic, and underline text.
You can also use superscript and subscript formatting.
Literal Blocks¶
A literal block preserves whitespace:
This text is preserved
exactly as written
including indentation
Sidebar¶
Blockquotes¶
Any fool can write code that a computer can understand. Good programmers write code that humans can understand.
Definition Lists¶
- Zensical
-
A modern static site generator built in Rust by the Material for MkDocs team.
- Module
-
A composable unit of functionality that implements the
Moduletrait. - Stream
-
A reactive data pipeline for processing items in the build graph.
Nested Lists¶
-
Build system
-
Scheduler
-
Actions
-
Stores
-
-
Streams
-
Operators (map, filter, join)
-
Workflows
-
-
-
Module system
-
Context API
-
Typed subscriptions
-
Multiple Code Blocks¶
# Python example
def greet(name: str) -> str:
return f"Hello, {name}!"// JavaScript example
const greet = (name) => `Hello, ${name}!`;# zensical.toml configuration
[project]
site_name = "My AsciiDoc Site"
site_description = "Built with Zensical"Passthrough Content¶
Links¶
-
External: Zensical website
-
Cross-reference: Back to AsciiDoc index