For full documentation visit zensical.org.
zensical new - Create a new projectzensical serve - Start local web serverzensical build - Build your site
Go to documentation
!!! note
This is a **note** admonition. Use it to provide helpful information.
!!! warning
This is a **warning** admonition. Be careful!
Go to documentation
??? info “Click to expand for more info”
This content is hidden until you click to expand it.
Great for FAQs or long explanations.
Go to documentation
``` python hl_lines=”2” title=”Code blocks” def greet(name): print(f”Hello, {name}!”) # (1)!
greet(“Python”)
1. > Go to [documentation](https://zensical.org/docs/authoring/code-blocks/#code-annotations)
Code annotations allow to attach notes to lines of code.
Code can also be highlighted inline: `#!python print("Hello, Python!")`.
## Content tabs
> Go to [documentation](https://zensical.org/docs/authoring/content-tabs/)
=== "Python"
``` python
print("Hello from Python!")
```
=== "Rust"
``` rs
println!("Hello from Rust!");
```
## Diagrams
> Go to [documentation](https://zensical.org/docs/authoring/diagrams/)
``` mermaid
graph LR
A[Start] --> B{Error?};
B -->|Yes| C[Hmm...];
C --> D[Debug];
D --> B;
B ---->|No| E[Yay!];
Go to documentation
Here’s a sentence with a footnote.1
Hover it, to see a tooltip.
Go to documentation
Go to documentation
:sparkles::rocket::tada::memo::eyes:\[\cos x=\sum_{k=0}^{\infty}\frac{(-1)^k}{(2k)!}x^{2k}\]Go to documentation
!!! warning “Needs configuration”
Note that MathJax is included via a script tag on this page and is not
configured in the generated default configuration to avoid including it
in a pages that do not need it. See the documentation for details on how
to configure it on all your pages if they are more Maths-heavy than these
simple starter pages.
Go to documentation
zensical.tomlGo to documentation
This is the footnote. ↩