npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hexo-image-localpath

v1.0.1

Published

enable you to reference files in post asset with relative path

Downloads

5

Readme

hexo-image-localpath

hexo-image-localpath resolve the relative path of markdown assets automatically.

The code of this plugin refers to hexo-intuitive-image, and fix the issue of symlink operation not permitted.

Install

npm install hexo-image-localpath --save

After hexo-image-localpath installed, assets local-path in markdown file will be resolved automatically when use hexo generate or hexo server .

Example

_config.yml configuration:

permalink: :title/
post_asset_folder: false

Here are document structure . Front-matter of post supports permalink.

- source
  |- _posts
     |- Notes
        |- Html
        |  |- HelloWorldHtml.md  ==> ![111](assets/111.jpg)
        |  |- assets
        |     |-111.jpg
        |  
        |- Javascript
		   |- HelloWorldJs.md   ==> permalink: /learnJS/ && ![222](assets/222.jpg)
       	   |- assets
       	      |-222.jpg

after executing command hexo generate or hexo server, assets files will be copied to url\image-assets public folder and assets file-path will be replaced to corresponding file-path.

- public
  |- Notes
  |  |- Html
  |     |- HelloWorldHtml
  |        |- index.html  ==> <img src="/Notes/Html/HelloWorldHtml/image-assets/111.jpg"
  |        |- image-assets
  |           |-111.jpg
  |       
  |- learnJS
     |- index.html		 ==> <img src="/learnJS/image-assets/222.jpg"
     |- image-assets
       	|-222.jpg

Additional

you may add following config to _config.yml to rename image with its hash to avoid name duplication.

intuitive_image:
  hash: true

中文说明

网上找到的hexo引用本地图片路径基本都是需要新建文章同名目录,再使用hexo-image-linkhexo-asset-link此类插件适配,此方案可行,但最大的问题是一篇文章就要新建一个目录存储图片,看着非常难受。我平常喜欢将所有文章的图片都存储在一个目录中,搜遍全网只有hexo-intuitive-image, 满足我的诉求,感谢原作者。hexo-image-localpath从它继承而来,增加解决 symlink operation not permitted报错的问题。

hexo-image-localpath主要用来解决markdown引用本地图片路径,生成静态网页后无法正确引用的问题。使用该插件基本可以和typora完美配合,无需手工拷贝图片或者修改链接。

原理是解析markdown中的图片路径,将源文件拷贝到目标url下的image-assets目录,同时将正确的图片路径填入html文件中。

安装方式

npm install hexo-image-localpath --save

使用说明

该插件安装后自动生效,无需添加任何配置。

案例

_config.yml 配置如下,关闭hexo自带的post_asset_folder功能,文章默认链接使用文章标题。

permalink: :title/
post_asset_folder: false

文档结构如下图,HelloWorldHtml.md引用的图片保存在同目录下的assets中,HelloWorldJs.md同样,只不过是在Front-matter 中设置了文章的固定路径 permalink: /learnJS/

- source
  |- _posts
     |- Notes
        |- Html
        |  |- HelloWorldHtml.md  ==> ![111](assets/111.jpg)
        |  |- assets
        |     |-111.jpg
        |  
        |- Javascript
		   |- HelloWorldJs.md   ==> permalink: /learnJS/ && ![222](assets/222.jpg)
       	   |- assets
       	      |-222.jpg

执行 hexo generatehexo server后,所有的markdown、图片资源被解析到public目录下,生成的文件目录如下,其中HelloWorldHtml.md按照原文件路径生成,HelloWorldJs.md按固定url生成,文章里的图片相对路径都被正确替换。

- public
  |- Notes
  |  |- Html
  |     |- HelloWorldHtml
  |        |- index.html  ==> <img src="/Notes/Html/HelloWorldHtml/image-assets/111.jpg"
  |        |- image-assets
  |           |-111.jpg
  |       
  |- learnJS
     |- index.html		 ==> <img src="/learnJS/image-assets/222.jpg"
     |- image-assets
       	|-222.jpg

补充

可在_config.yml中添加如下配置,防止图片名称重复(一般情况估计也用不到^^~),尽情使用吧!

intuitive_image:
  hash: true