HomeAll
Zeto
Markdown Guide

Markdown Guide

Zeto supports Markdown formatting in posts and comments. Here's a guide to all the features you can use.

Text Formatting

Bold

**bold text**

Result: bold text

Italic

*italic text*

Result: italic text

Bold and Italic

***bold and italic***

Result: bold and italic

Strikethrough

~~strikethrough text~~

Result: strikethrough text

Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Use # symbols to create headings. More symbols = smaller heading.

Links

Inline Link

[link text](https://example.com)

Result: link text

Link with Title

[link text](https://example.com "Title")

The title appears when hovering over the link.

Auto-linked URLs

https://example.com

URLs are automatically converted to clickable links.

Images

![alt text](https://example.com/image.jpg)

The alt text describes the image for accessibility.

Lists

Unordered List

- Item 1
- Item 2
  - Nested item
  - Another nested item
- Item 3
Result:
  • Item 1
  • Item 2
    • Nested item
    • Another nested item
  • Item 3

Ordered List

1. First item
2. Second item
3. Third item
Result:
  1. First item
  2. Second item
  3. Third item

Code

Inline Code

`inline code`

Result: inline code

Code Block

```
function hello() {
  console.log("Hello, world!");
}
```

Use triple backticks for multi-line code blocks.

Code Block with Language

```javascript
function hello() {
  console.log("Hello, world!");
}
```

Add a language identifier after the opening backticks for syntax highlighting.

Blockquotes

> This is a blockquote.
> It can span multiple lines.
>
> And have multiple paragraphs.
Result:
This is a blockquote. It can span multiple lines.

And have multiple paragraphs.

Horizontal Rule

---

Result:


Line Breaks

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.

Escaping Characters

\*not italic\*

Use a backslash \ to escape special characters and display them literally.