07 — Images and attachments
Putting an image in a document
- Upload the image next to the document: open the folder, Add File → Upload File.
- Reference it from the Markdown file:

The text in brackets is the description shown if the image cannot load, and read aloud by screen readers. Write a real description, not "image".
Where to keep images
A predictable layout that always works:
project/
readme.md
assets/
topology.png
rack.jpg
and in readme.md:

Naming — the one rule to remember
Use lowercase names without spaces for folders and image files:
| Fragile | Safe |
|---|---|
Ekran Alıntısı.PNG | ekran-alintisi.png |
1-) Inter-VLAN Notes/ | 01-inter-vlan/ |
If a name does contain spaces, write them as %20 in the link:

Controlling the size
Markdown has no size option, so use a plain HTML tag when you need one:
<img src="assets/topology.png" alt="Network topology" width="600">
Linking a file instead of showing it
Drop the exclamation mark and you get a download link:
[Packet Tracer file](main.pkt)
Attachments in issues
While writing an issue or a comment, drag a file into the text box. It is uploaded and the link is inserted for you. Use this for screenshots and logs that do not belong in the repository itself.