使用 Hexo 框架,在发布之后会自动给你的代码块进行区分,并没有安装其他依赖。
然后根据生成的 html 基础上进行代码高亮。
只需要匹配对应类名加上 CSS 样式就可以完成基础的代码高亮。
- 代码块:
- HTML
- Javascript
- css
- 代码行
先开坑,慢慢填坑。可能要等到 Jeecg-boot 之后陆陆续续完成,也有可能提前,随缘。
HTML 部分
<figure class='.html'>
-> html 代码块
.meta
-> 源.line
-> 行.tag
-> 标签.name
-> 标签名.attr
-> 属性名.string
-> 字符串
.comment
-> 注释.javascript
-> 脚本代码.function
-> 函数.keyword
-> 关键字.title
-> 标题.params
-> 参数.comment
-> 注释.literal
-> 文字.number
-> 数字.built_in
-> 内置方法/对象
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<script src="http://www.baidu.com/a.js"></script>
<style type="text/css">
/* 注释 */
#a {
width: 100%;
height: auto;
border: 1px solid #000;
display: block;
background: rgb(0, 0, 0);
}
.b {
font-size: 15px;
}
table input {
font-size: 15px;
}
input[type='number'] {
font-size: 15px;
}
</style>
</head>
<body>
<div id="a"></div>
<div class="b"></div>
<form action="#" method="post">
<input type="button" value="1" />
<input type="checkbox" name="abc" />
</form>
<table border="1">
<thead>
<tr>
<td colspan="2"></td>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2"></td>
</tr>
<tr>
<td>文字</td>
<td>文字</td>
</tr>
</tbody>
</table>
<div style="border-width:5px;border-style:solid;border-color:red"></div>
<!-- HTML注释 -->
</body>
<script type="text/javascript">
function abc() {
var num = 120
let abc = 'string'
const setTrue = true
for (let i = 0; i <= 10; i++) {
console.log(i)
}
}
document.write('Hello World!')
// 单行注释
/*
* 多行注释
*
*/
</script>
</html>
JavaScript 部分
import { ERR_OK } from 'base.config.js'
import goodsList from 'components/index/goods/goods_list'
export default {
name: 'goods-list',
data() {
return {
goods: [],
page: 1,
size: 10,
sort: null,
viewMode: 'img',
allLoaded: false
}
},
components: { goodsList },
mounted() {
this.getGoodsList()
Indicator.open()
},
methods: {
ifelse() {
if (type === 'aaa') {
type = 'bbb'
} else {
type = 'aaa'
}
},
getGoodsList() {
let data = {
categoryId: this.categoryId,
pageNum: this.page,
pageSize: this.size
}
this.api
.getGoodsList(data)
.then(res => {
Indicator.close()
res = res.data
console.log(res)
})
.catch(err => {
console.log(err)
})
}
}
}
CSS 部分
/* 注释 */
#a {
width: 100%;
height: auto;
border: 1px solid #000;
display: block;
background: rgb(0, 0, 0);
}
.b {
font-size: 15px;
}
table input {
font-size: 15px;
}
input[type='number'] {
font-size: 15px;
}
@keyframes mymove {
from {
top: 0px;
}
to {
top: 200px;
}
}
@media (max-width: 650px) {
#a {
font-size: 12px;
}
}