From 6253384e7db7e39a0130a101ffe005b1ff25f01a Mon Sep 17 00:00:00 2001 From: Denis Telnov Date: Mon, 20 Jan 2025 06:34:19 +0300 Subject: [PATCH] Embedded Images in Markdown (#2174) [GFM](https://loilo.github.io/gfm-preview/) now supports the ability to embed Base64 encoded images in Markdown. --- markdown.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/markdown.md b/markdown.md index c1a0b4da..d68490e4 100644 --- a/markdown.md +++ b/markdown.md @@ -106,6 +106,11 @@ ___bold italic___ [img]: http://foo.com/img.jpg ``` +```markdown +![Image alt text][img_base64] +[img_base64]: +``` + ### Code ```markdown