Home [Issue][Jekyll] How to add a image with links in markdown?
Post
Cancel

[Issue][Jekyll] How to add a image with links in markdown?

錯誤訊息

1
2
Htmlproofer Error        
internally linking to xxxxx, which does not exist...

解決方法

I use it [![](https://riva.io/x.jpg)]()

以文字link方式中,放入Image連結的方式

1
[![Alt text](https://example.com/image.png)](https://example.com)

Image:

1
![Alt text for broken image link](assets/logo.png)

Link:

1
[Alt text for broken link](httsp://example.com)

Image with link:

1
[![Alt text for broken image link](assets/logo.png)](https://example.com)

https://talk.jekyllrb.com/t/how-to-add-a-image-with-links-in-markdown/5915/3

This post is licensed under CC BY 4.0 by the author.