Add MF-6: Links and images

2025-09-21 20:51:06 +00:00
parent 0925787734
commit 870389619a

@@ -0,0 +1,32 @@
# Links in Markdown
Here's an [inline link](https://www.example.com) to a website.
You can also add [a link with a title](https://www.example.com "This appears on hover").
For reference-style links, you can write [this link][1] or even [this one][] using the link text itself.
[1]: https://www.example.com
[this one]: https://www.another-example.com
Direct URLs work too: <https://www.example.com>
# Images in Markdown
Basic image syntax:
![Alt text](image.jpg)
With a title that appears on hover:
![Alt text](image.jpg "Image title")
You can use reference-style for images too:
![Alt text][logo]
[logo]: company-logo.png "Company Logo"
Images from URLs:
![Remote image](https://example.com/photo.jpg)
You can also make images clickable by wrapping them in links:
[![Alt text](thumbnail.jpg)](https://example.com)