Zeto supports Markdown formatting in posts and comments. Here's a guide to all the features you can use.
**bold text**Result: bold text
*italic text*Result: italic text
***bold and italic***Result: bold and italic
~~strikethrough text~~Result: strikethrough text
# Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6
Use # symbols to create headings. More symbols = smaller heading.
[link text](https://example.com "Title")The title appears when hovering over the link.
https://example.comURLs are automatically converted to clickable links.
The alt text describes the image for accessibility.
- Item 1 - Item 2 - Nested item - Another nested item - Item 3
1. First item 2. Second item 3. Third item
`inline code`Result: inline code
```
function hello() {
console.log("Hello, world!");
}
```Use triple backticks for multi-line code blocks.
```javascript
function hello() {
console.log("Hello, world!");
}
```Add a language identifier after the opening backticks for syntax highlighting.
> This is a blockquote. > It can span multiple lines. > > And have multiple paragraphs.
This is a blockquote. It can span multiple lines.
And have multiple paragraphs.
---Result:
Line one Line two
End a line with two spaces to create a line break, or use a blank line to start a new paragraph.
\*not italic\*Use a backslash \ to escape special characters and display them literally.