-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
91 lines (80 loc) · 2.16 KB
/
config.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
baseURL = "https://franquil.github.io/"
languageCode = "zh-cn"
DefaultContentLanguage = "zh-cn"
title = "大国笔记"
theme = "hugo-kiera"
paginate = 10
googleAnalytics = "UA-51312542-3"
hasCJKLanguage = true # site contains Chinese/Korean/Japanese characters
publishDir = "docs" # deploy via github pages at /docs folder
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown", "_files$", "_cache$"]
pygmentsUseClasses = false # syntax highlighting
# custom_css = ["/images/css/custom.css"]
# custom_js = ["https://cdn.jsdelivr.net/gh/cferdinandi/tabby@12.0.0/dist/js/tabby.polyfills.min.js"]
[author]
name = "Franquil"
github = "franquil"
[menu]
[[menu.main]]
identifier = "about"
name = "关于"
url = "/about/"
weight = 0
[[menu.main]]
identifier = "tags"
name = "标签"
url = "/tags"
weight = 10
[permalinks]
posts = "/:slug"
[params]
description = "大国笔记,以记录和学习为目的的简要记录内容。"
dateFormat = "2006-01-02"
tagline = "以简要直接的方式记录编程技术学习和实践中所遇到的问题。"
mainSections = ["posts", "pages"]
customCSS = ["/css/custom.css"]
[markup]
defaultMarkdownHandler = "goldmark"
[markup.asciidocExt]
backend = "html5"
docType = "article"
extensions = []
failureLevel = "fatal"
noHeaderOrFooter = true
safeMode = "unsafe"
sectionNumbers = false
trace = false
verbose = true
workingFolderCurrent = false
[markup.asciidocExt.attributes]
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
attribute = true
autoHeadingID = true
autoHeadingIDType = "github"
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xhtml = false
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "native"
tabWidth = 4
[markup.tableOfContents]
endLevel = 3
ordered = false
startLevel = 2