Tech Notes

Image

pl

In Markdown (MD), inserting an image is very simple β€” you use syntax similar to a link:

![alt text](path_or_URL)

Examples

1. Image from the internet:

![cat](https://example.com/cat.jpg)

2. Image from a local folder:

![logo](./images/logo.png)

3. Image with a title (tooltip):

![dog](https://example.com/dog.jpg "This is a dog")

How it works


Tips