正则表达式使用技巧
1、驼峰替换
vscode搜索以下内容,查找 下划线+小写字母 的组合
1 | _([a-z]) |
替换为以下内容,将 下划线+小写字母 替换为 大写字母
1 | \U$1 |
csdn(未验证)
1 | 将 _([a-z]) 替换成 \U$1\E , 可以完成下划线转驼峰 |
-------------Thanks for your time.-------------
无限进步
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent:
meta: false
pages: false
posts:
title: true
date: true
path: true
text: false
raw: false
content: false
slug: false
updated: false
comments: false
link: false
permalink: false
excerpt: false
categories: false
tags: true