Markdown support
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
- Bullet point
- Another bullet point
- Numbered list
- Second item
This is a quote
Inline code
Code blocks
// Syntax highlighted
Code block
Working with Markdown in 4567
- Create or edit the
project.mdfile - 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
- Unordered list item
- Another item
- Nested item
- Another nested item
- Ordered list item
- Another ordered item
- Nested ordered item
- Another nested item
Links
[Link text](https://example.com)
[Link with title](https://example.com "Hover 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
- Instant Updates - Changes appear when you hit Save immediately in browser
- Full Syntax Support - All standard Markdown features
- Syntax Highlighting - Code blocks with language-specific coloring
- Responsive Design - Markdown renders beautifully on all devices