-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteadocs.config.js
38 lines (37 loc) · 1.7 KB
/
teadocs.config.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
'use strict';
const path = require('path');
module.exports = {
doc: {
name: "Julia 中文文档",
description: "这是Julia官方的中文文档,Julia 是一个面向科学计算的高性能动态高级程序设计语言。其语法与其他科学计算语言相似。在许多情况下拥有能与编译型语言相媲美的性能。Julia 是个灵活的动态语言,适合科学和数值计算,性能可与传统静态类型语言媲美。",
version: "1.0.1",
dir: "./src",
outDir: "",
staticDir: ""
},
theme: {
dir: "",
title: "Julia 官方中文文档",
headHtml: `
<meta name="description" content="这是Julia官方的中文文档,Julia 是一个面向科学计算的高性能动态高级程序设计语言。其语法与其他科学计算语言相似。在许多情况下拥有能与编译型语言相媲美的性能。Julia 是个灵活的动态语言,适合科学和数值计算,性能可与传统静态类型语言媲美。" />
<meta name="keywords" content="julia中文文档,,julia中文手册,julia中文api,julia中文教程,julia教程,julia下载安装,julia" />
<link rel="shortcut icon" href="/static/favicon.ico"/>
`,
footHtml: `
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?f5ec89416f17acb03a113114c0edff1b";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
`,
isMinify: true,
rootPath: "/"
},
nav: {
tree: "./tree"
}
}