Hexo + Typora + insert and display images

Hexo + Typora + 插入與顯示圖片

試了許多方法,最喜歡這個解法

不需使用 assest folder,不需使用外掛來修改路徑,不需仰賴第三方圖庫,在 Typora 編輯器中能正常顯示圖片


1. 在 hexo folder > _config.yml 的設置

此法不需要每次都產生 asset folder,將它關閉

1
post_asset_folder: false


2. Typora 中的設置

每當插入新圖片,會把圖片複製到 hexo folder > source > images > 文章title >  資料夾中

Screen Shot 2022-08-21 at 12.40.53 AM


3. 在 hexo folder > scaffolds > post.md 中新增 Typora root url 設定

新增 typora-root-url: .. 字樣

1
2
3
4
5
6
7
title: {{ title }}
date: {{ date }}
updated: {{ date }}
tags: []
category: []
sticky:
typora-root-url: ..


reference: https://www.cnblogs.com/himeka/p/16306906.html