Problem
When managing images for a Hugo blog in Obsidian, using an image hosting service can be unstable. Without one, inserting images becomes difficult and maintenance is cumbersome. Common issues include:
- Path Confusion: Manual maintenance of the
/static/images
directory structure is required. - Multi-language Adaptation: Duplicate configuration is needed for Chinese and English paths.
- Poor Development Experience: Frequent 404 errors occur during local debugging and file operations.
Demonstration
Direct rendering may result in errors due to incorrect paths, as shown below:
|
|
After applying the script, the image path is corrected and re-requested:
|
|
The image is then rendered correctly.
Solution
This section provides a conceptual reference. Anyone can easily implement it. If you need the source code, feel free to request it in the comments.
|
|
Configuration
Configure Hugo
In config.yaml
, set:
|
|
Then, simply include the following in the head section:
|
|
After configuring Obsidian, the solution will take effect.
Configure Obsidian
- Set file references to use relative path mode.
- Configure the image storage directory as needed. For example, mine is
static\images\
. - No need to worry about file changes—Obsidian automatically updates links when files are moved.
Advantages
- No Dependency on Image Hosting: All images are managed locally without any file operations.
- Developer-Friendly: Real-time reloading doesn’t disrupt the writing flow.
- SEO Optimization: Ensures consistency in static resource paths.
- Multi-platform Compatibility: Works seamlessly with static site generators like Hugo/Hexo.
- Easy Organization: Moving file paths can rely on Obsidian to automatically update links.