Add C language support and enhance Clike language definitions; update Vue theme styles
This commit is contained in:
commit
3c13574a9c
8 changed files with 357 additions and 0 deletions
30
index.html
Normal file
30
index.html
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<title>期末复习</title>
|
||||
<link rel="stylesheet" href="./lib/themes/vue.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">加载中...</div>
|
||||
|
||||
<script>
|
||||
window.$docsify = {
|
||||
name: '复习文档',
|
||||
repo: '',
|
||||
loadSidebar: false,
|
||||
subMaxLevel: 2,
|
||||
auto2top: true,
|
||||
themeColor: '#42b983'
|
||||
};
|
||||
</script>
|
||||
|
||||
<!-- Docsify core -->
|
||||
<script src="./lib/docsify.min.js"></script>
|
||||
<!-- Prism syntax highlight for C (depends on clike) -->
|
||||
<script src="./lib/prism/prism-clike.min.js"></script>
|
||||
<script src="./lib/prism/prism-c.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue