1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-08-15 05:30:16 +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

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