mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-06-06 05:11:45 +08:00
6656cb8c6f
2. fix bugs
8 lines
139 B
JavaScript
8 lines
139 B
JavaScript
hexo.extend.helper.register('url_check', function (p) {
|
|
|
|
let src = p ;
|
|
let reg = /^https?/ig;
|
|
return reg.test(src)
|
|
|
|
|
|
}) |