Mimi
Mimi
You can try this plugin: [hexo-img-locator](https://www.npmjs.com/package/hexo-img-locator) In `_config.yml`: ```yml new_post_name: :title/index.md post_asset_folder: false ``` For file structure like this: ``` _posts/ | - Some-Title/ | - index.md (Markdown file of...
We could make it the new default behavior, and also support the old post asset folder structure (for backward compatibility)
@fuyufjh Yes, the situation is more complicated than I thought. The PostAssets in Hexo need to be updated because currently these images are not recognized by Hexo and copied to...
I will close this Issue because implementing this feature in Hexo is complex. If the input is a single Markdown file while generating multiple HTML outputs, it would require significant...
I found that the `external_link` filter is consuming a huge amount of memory. You can try to disable it in `_config.yml` ```yml external_link: enable: false ``` See also #3886 You...
@dimaslanjaka How many tags and categories are there for your 1400+ posts? I have also found that Hexo takes a lot of time querying posts and tags, because the database...
I realize that this does not solve the problem, as the link on the homepage will still point to inside the article. When readers click the anchor on the homepage,...
As of 2024, Bluebird still holds a significant performance advantage in benchmarks. However, the actual performance gap in real-world applications like Hexo still needs further experimentation.
Sorry for the late reply. Modifying the layout and styles with Hexo can be difficult because different themes use different template engines and have different code styles. Hexo provides an...
Superseded by https://github.com/hexojs/hexo/pull/5117