New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hexo-asset-image

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hexo-asset-image - npm Package Compare versions

Comparing version

to
0.0.3

26

index.js

@@ -13,3 +13,6 @@ 'use strict';

var link = data.permalink;
link = link.substring(getPosition(link, '/', 3) + 1);
var beginPos = getPosition(link, '/', 3) + 1;
// In hexo 3.1.1, the permalink of "about" page is like ".../about/index.html".
var endPos = link.lastIndexOf('/') + 1;
link = link.substring(beginPos, endPos);

@@ -19,14 +22,25 @@ var toprocess = ['excerpt', 'more', 'content'];

var key = toprocess[i];
var $ = cheerio.load(data[key], {
ignoreWhitespace: false,
xmlMode: false,
lowerCaseTags: false
lowerCaseTags: false,
decodeEntities: false
});
$('img').each(function(){
var src = $(this).attr('src');
// For windows style path, we replace '\' to '/'.
var src = $(this).attr('src').replace('\\', '/');
if(!/http[s]*.*|\/\/.*/.test(src)){
// is a local file in post_asset_folder
src = src.split("/").pop();
// For "about" page, the first part of "src" can't be removed.
// In addition, to support multi-level local directory.
var linkArray = link.split('/').filter(function(elem){
return elem != '';
});
var srcArray = src.split('/').filter(function(elem){
return elem != '';
});
if(linkArray[linkArray.length - 1] == srcArray[0])
srcArray.shift();
src = srcArray.join('/');
$(this).attr('src', '/' + link + src);

@@ -33,0 +47,0 @@ }

{
"name": "hexo-asset-image",
"version": "0.0.2",
"version": "0.0.3",
"description": "Give asset image in hexo a absolutely path automatically",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -9,3 +9,3 @@ # hexo-asset-image

```shell
npm install https://github.com/CodeFalling/hexo-asset-image --save
npm install hexo-asset-image --save
```

@@ -25,2 +25,2 @@

Just use `![logo](MacGesture2-Publish/logo.jpg)` to insert `logo.jpg`.
Just use `![logo](logo.jpg)` to insert `logo.jpg`.