Markdown tips¶
For full documentation visit zensical.org.
Commands¶
zensical new- Create a new projectzensical serve- Start local web serverzensical build- Build your site
Examples¶
Admonitions¶
Go to documentation
Note
This is a note admonition. Use it to provide helpful information.
Warning
This is a warning admonition. Be careful!
Details¶
Go to documentation
> Go to [documentation](https://zensical.org/docs/authoring/admonitions/#collapsible-blocks)
Click to expand for more info
This content is hidden until you click to expand it. Great for FAQs or long explanations.
??? info "Click to expand for more info"
This content is hidden until you click to expand it.
Great for FAQs or long explanations.
Code Blocks¶
Go to documentation
-
Go to documentation
Code annotations allow to attach notes to lines of code.
Code can also be highlighted inline: print("Hello, Python!").
Content tabs¶
Go to documentation
Diagrams¶
Go to documentation
graph LR
A[Start] --> B{Error?};
B -->|Yes| C[Hmm...];
C --> D[Debug];
D --> B;
B ---->|No| E[Yay!];
Footnotes¶
Go to documentation
Here's a sentence with a footnote.1
Hover it, to see a tooltip.
Images¶
Use regular Markdown when you want the image to appear directly in the page:
You can also add hover text after the path:
Use a reference-style image when you want to keep the image path separate from the paragraph:
To size an image, use HTML instead of Markdown:
You can also size by percentage:
Use inline HTML when you want an image to sit inside a sentence:
Blend until smooth <img src="ASA/images/Picture1.png" alt="Berry Blast smoothie" width="80"> and serve cold.
Formatting¶
Go to documentation
- This was marked (highlight)
- This was inserted (underline)
This was deleted (strikethrough)- H2O
- ATA
- Ctrl+Alt+Del
Icons, Emojis¶
Go to documentation
:sparkles::rocket::tada::memo::eyes:
Font Awesome¶
To use fontawesome, you must use the solid folder. So the prefix is: fontawesome-solid
-
:fontawesome-solid-mosquito-net: -
:fontawesome-solid-calculator:
Luicide, Material Icons¶
-
:lucide-aperture: -
:material-bluetooth-connect:
Icon header:¶
If you want an icon to show up in the navigation page, put this at the top of your page:
Maths¶
Go to documentation
\cos x=\sum_{k=0}^{\infty}\frac{(-1)^k}{(2k)!}x^{2k}
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.
Task Lists¶
Go to documentation
I've also added a button that clears all the checks!
- Install Zensical
- Configure
zensical.toml - Write amazing documentation
- Deploy anywhere
<div class="tasklist-clear-anchor"></div>
* [x] Install Zensical
* [x] Configure `zensical.toml`
* [x] Write amazing documentation
* [ ] Deploy anywhere
Tooltips¶
Go to documentation
icon: simple/markdown¶
Markdown in 5min¶
Headers¶
Text formatting¶
Links and images¶
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")


Image examples¶
Inline image:

Reference-style image:
![Alt text][example-image]
[example-image]: images/example.png "Optional hover title"
Scaled image:
<img src="images/example.png" alt="Alt text" width="400">
Scaled by percentage:
<img src="images/example.png" alt="Alt text" width="60%">
Small image inside a sentence:
Text before <img src="images/example.png" alt="Alt text" width="80"> text after.
Lists¶
Blockquotes¶
Code blocks¶
Tables¶
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1 | Data | Data |
| Row 2 | Data | Data |
Horizontal rule¶
Task lists¶
Escaping characters¶
Line breaks¶
-
This is the footnote. ↩