无法在 Github 页面上加载图像博客 post

Not able to load images on Github pages Blog post

我想发布一个博客post,其中包含一个情节。我完全能够在 markdown 中查看和加载图像,但是当我尝试在我的 github 页面上发布时,我可以完美地看到除了情节之外的所有内容。这是我的 Github repo for my blog and here is the markdown file 我希望 post 在线。

在上面的 post 中,我试图显示图像:![](DV_files/figure-html/unnamed-chunk-2-1.png) 图像位于 _posts/DV_files/figure-html/unnamed-chunk-2-1.png

  1. 创建一个文件夹以在根级别保存您 post 的图像

    mkdir images
    
  2. 将包含图片的目录结构移动到上面的文件夹

    mv _posts/DV_files/ images/
    
  3. 使用新路径并使用absolute_url生成完整的url

    ![]({{"/images/DV_files/figure-html/unnamed-chunk-2-1.png"|absolute_url}})
    

现在您的图片将显示在 post 中。