Use Markdown syntax in your project.md files to add formatted text content to your website.

4567 supports full Markdown formatting in your project.md files.
Here are the most commonly used formatting options:

# Main Heading
## Sub Heading
### Smaller Heading

**Bold text**
*Italic text*

- Bullet point
- Another bullet point

1. Numbered list
2. Second item

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

> This is a quote

`Inline code`

Main Heading

Sub Heading

Smaller Heading

Bold text
Italic text

  1. Numbered list
  2. Second item

Link text

This is a quote

Inline code

Code blocks

// Syntax highlighted
Code block

Working with Markdown in 4567

  1. Create or edit the project.md file
  2. Use any Markdown syntax - changes appear instantly

Markdown Reference

Text Formatting

**Bold text** or __bold text__
*Italic text* or _italic text_
***Bold and italic***
~~Strikethrough~~

Bold text or bold text
Italic text or italic text
Bold and italic
Strikethrough

Headings

# H1 Heading
## H2 Heading
### H3 Heading
#### H4 Heading
##### H5 Heading
###### H6 Heading

H1 Heading

H2 Heading

H3 Heading

H4 Heading

H5 Heading
H6 Heading

Lists

- Unordered list item
- Another item
  - Nested item
  - Another nested item

1. Ordered list item
2. Another ordered item
   1. Nested ordered item
   2. Another nested item
  1. Ordered list item
  2. Another ordered item
    1. Nested ordered item
    2. Another nested item
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")

Link text
Link with title

Code

`Inline code`

Code block

// Syntax highlighted code block
hello() {console.log("Hello, world!");}

Blockquotes

> This is a blockquote
>
> It can span multiple lines

This is a blockquote

It can span multiple lines

Tables

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1   | Cell 2   | Cell 3   |
| Cell 4   | Cell 5   | Cell 6   |
Header 1 Header 2 Header 3
Cell 1 Cell 2 Cell 3
Cell 4 Cell 5 Cell 6

Horizontal Rules

---

Front Matter Support

Use YAML front matter for metadata:

---
title: "My Project Title"
description: "Brief project description"
---

Your main content goes here...

Live Markdown Preview