KabaForge
🌍 Türkçe · English · Deutsch · Français · Русский

06 — Markdown basics

Markdown is plain text with a few punctuation rules. Files ending in .md are rendered automatically, and a file named readme.md is shown on its folder page.

Headings

# Title
## Section
### Subsection

Leave a blank line before and after a heading.

Text

**bold**  *italic*  ~~struck through~~  `code`

A single line break is ignored. To start a new paragraph, leave a blank line.

Lists

- first
- second
  - nested (two spaces)

1. step one
2. step two
[KabaForge](https://forge.kabaforce.com)
[chapter 04](../04-create-directory/readme.md)

Links to files in the same repository are best written as relative paths — they keep working on every branch.

Code

Fenced blocks keep spacing and add colours. Write the language after the opening fence:

```bash
git status
```

Tables

| Column | Meaning |
|--------|---------|
| `main` | default branch |
| `.md`  | Markdown file |

Quotes, rules, tasks

> A quoted note.

---

- [x] done
- [ ] not done yet

Practical tips

⬅ Previous: 05 — Deleting files and directories📚 All chaptersNext: 07 — Images and attachments ➡