hexo g 时间过长

原因

1
2
3
Hexo 3 中的 highlight.js 会试图分析 `` ` 中的代码内容可能属于哪种语言,内容越长,分析时间就越长

在Hexo 2 自带的语法高亮插件 highlight.js 在遇到没有语言说明的代码时是统一当成纯文本

解决办法:

在没有语言说明符的代码段后面加上 类似js 的说明符;

考虑到有很多md文件,所以拿node.js写了自动修改 hexo3_speed_up

使用说明

1
node speed_up.js [md文件夹(source/_posts)或文件路径(默认为当前文件夹)] [说明符(默认为js)]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
var fs = require('fs');
var path = require('path');

var userPath = path.resolve(process.argv[2] || './');
var codeStyle = process.argv[3] || 'js';

explorer(userPath);
function explorer(path) {
fs.stat(path, function(err, stat) {
if (err) {
console.log(err);
return;
}
if (stat.isDirectory()) {
fs.readdir(path, function(err, files) {
//err 为错误 , files 文件名列表包含文件夹与文件
if (err) {
console.log('error:\n' + err);
return;
}
files.forEach(function(file) {
fs.stat(path + '/' + file, function(err, stat) {
if (err) {
console.log(err);
return;
}
if (stat.isDirectory()) {
// 如果是文件夹遍历
explorer(path + '/' + file);
}
else {
// 读出所有的文件
var fileName = path + '/' + file;
if (/.*\.md$/.test(fileName) && !/node_modules/.test(fileName)) {
//console.log(fileName);
changeContext(fileName);
}
}
});
});
});
}
else {
changeContext(userPath);
}
});
}


function changeContext(filename) {
var index = 0;
var arr = [];
eachLine(filename, function(line) {
if (/```.*/.test(line)) {
index++;
if (/```\s*$/.test(line)) {
if (index % 2 === 1) {
line = '```' + codeStyle;
}
}
}
arr.push(line);
}).then(function() {
fs.writeFile(filename, arr.join('\n') + '\n', function(err) {
if (err) {
console.log(err);
}
else {
console.log('修改 ' + filename + ' 成功~');
}
});
});
}


/*****以下代码来自 https://github.com/nickewing/line-reader/blob/master/lib/line_reader.js*****/
// 这样 就不需要 安装 node_modules了
var StringDecoder = require('string_decoder').StringDecoder;

function LineReader(fd, cb, separator, encoding, bufferSize) {
var filePosition = 0,
encoding = encoding || 'utf8',
separator = separator || '\n',
bufferSize = bufferSize || 1024,
buffer = new Buffer(bufferSize),
bufferStr = '',
decoder = new StringDecoder(encoding),
closed = false,
eof = false,
separatorIndex = -1;

function close() {
if (!closed) {
fs.close(fd, function(err) {
if (err) {
throw err;
}
});
closed = true;
}
}

function readToSeparator(cb) {
function readChunk() {
fs.read(fd, buffer, 0, bufferSize, filePosition, function(err, bytesRead) {
var separatorAtEnd;

if (err) {
throw err;
}

if (bytesRead < bufferSize) {
eof = true;
close();
}

filePosition += bytesRead;

bufferStr += decoder.write(buffer.slice(0, bytesRead));

if (separatorIndex < 0) {
separatorIndex = bufferStr.indexOf(separator);
}

separatorAtEnd = separatorIndex === bufferStr.length - 1;
if (bytesRead && (separatorIndex === -1 || separatorAtEnd) && !eof) {
readChunk();
}
else {
cb();
}
});
}

readChunk();
}

function hasNextLine() {
return bufferStr.length > 0 || !eof;
}

function nextLine(cb) {
function getLine() {
var ret = bufferStr.substring(0, separatorIndex);

bufferStr = bufferStr.substring(separatorIndex + separator.length);
separatorIndex = -1;
cb(ret);
}

if (separatorIndex < 0) {
separatorIndex = bufferStr.indexOf(separator);
}

if (separatorIndex < 0) {
if (eof) {
if (hasNextLine()) {
separatorIndex = bufferStr.length;
getLine();
}
else {
throw new Error('No more lines to read.');
}
}
else {
readToSeparator(getLine);
}
}
else {
getLine();
}
}

this.hasNextLine = hasNextLine;
this.nextLine = nextLine;
this.close = close;

readToSeparator(cb);
}

function open(filename, cb, separator, encoding, bufferSize) {
fs.open(filename, 'r', parseInt('666', 8), function(err, fd) {
var reader;
if (err) {
throw err;
}

reader = new LineReader(fd, function() {
cb(reader);
}, separator, encoding, bufferSize);
});
}

function eachLine(filename, cb, separator, encoding, bufferSize) {
var finalFn,
asyncCb = cb.length == 3;

function finish() {
if (finalFn && typeof finalFn === 'function') {
finalFn();
}
}

open(filename, function(reader) {
function newRead() {
if (reader.hasNextLine()) {
setImmediate(readNext);
}
else {
finish();
}
}

function continueCb(continueReading) {
if (continueReading !== false) {
newRead();
}
else {
finish();
reader.close();
}
}

function readNext() {
reader.nextLine(function(line) {
var last = !reader.hasNextLine();

if (asyncCb) {
cb(line, last, continueCb);
}
else {
if (cb(line, last) !== false) {
newRead();
}
else {
finish();
reader.close();
}
}
});
}

newRead();
}, separator, encoding, bufferSize);

return {
then: function(cb) {
finalFn = cb;
}
};
}

参考文档


文章若有纰漏请大家补充指正,谢谢~~
http://blog.xinshangshangxin.com SHANG殇