1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-14 22:27:33 +02:00

Embedded Images in Markdown (#2174)

[GFM](https://loilo.github.io/gfm-preview/) now supports the ability to
embed Base64 encoded images in Markdown.
This commit is contained in:
Denis Telnov 2025-01-20 06:34:19 +03:00 committed by GitHub
parent 83e30b2c0e
commit 6253384e7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -106,6 +106,11 @@ ___bold italic___
[img]: http://foo.com/img.jpg
```
```markdown
![Image alt text][img_base64]
[img_base64]: <data:image/png;base64,...>
```
### Code
```markdown