Hexo+Typora 插入图片路径问题
设置Hexo在 _config.yaml 中配置:1234post_asset_folder: truemarked: prependRoot: true postAsset: true 上述配置后,Hexo将会在你每一次通过 hexo new [layout] <title> 命令创建新文章时会自动创建一个同名文件夹。 可以将所有与你的文章有关的资源放在这个关联文件夹中,可以通过  的方式来引用它们。 举个例子: 使用 hexo new post test 后,会在 source/_posts/ 下创建 test.md 文件和 test 文件夹,在 test 文件夹中放入 1.png,目录结构如下: 1234source/_posts├── test.md└── test └── 1.png 在 test.md 中可以使用  方式引入,但这样就在 Typora 和其它编辑器中就无法本地预览图片。 解决方案一:打开 node_modules -> hexo-render-marked...