mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-07 01:44:56 +08:00
135 lines
3.0 KiB
TOML
135 lines
3.0 KiB
TOML
<<<<<<< HEAD
|
|
baseURL = "https://books.halfrost.com/leetcode"
|
|
languageCode = "en-us"
|
|
title = "LeetCode Cookbook"
|
|
theme = "book"
|
|
googleAnalytics = "UA-82753806-3"
|
|
enableEmoji = true
|
|
enableGitInfo = true
|
|
|
|
# Book configuration
|
|
disablePathToLower = true
|
|
|
|
# Needed for mermaid/katex shortcodes
|
|
[markup]
|
|
[markup.goldmark.renderer]
|
|
unsafe = true
|
|
|
|
[markup.tableOfContents]
|
|
startLevel = 1
|
|
|
|
# Multi-lingual mode config
|
|
# There are different options to translate files
|
|
# See https://gohugo.io/content-management/multilingual/#translation-by-filename
|
|
# And https://gohugo.io/content-management/multilingual/#translation-by-content-directory
|
|
#[languages]
|
|
#[languages.en]
|
|
# languageName = 'English'
|
|
# contentDir = 'content'
|
|
# weight = 1
|
|
|
|
#[languages.ru]
|
|
# languageName = 'Russian'
|
|
# contentDir = 'content.ru'
|
|
# weight = 2
|
|
|
|
#[languages.cn]
|
|
# languageName = 'Chinese'
|
|
# contentDir = 'content.cn'
|
|
# weight = 3
|
|
|
|
[menu]
|
|
[[menu.before]]
|
|
name = "Blog"
|
|
url = "https://halfrost.com"
|
|
weight = 10
|
|
[[menu.before]]
|
|
name = "Github"
|
|
url = "https://github.com/halfrost"
|
|
weight = 20
|
|
[[menu.before]]
|
|
name = "WeChat Official Accounts"
|
|
url = "https://img.halfrost.com/wechat-qr-code.png"
|
|
weight = 30
|
|
[[menu.before]]
|
|
name = "Twitter"
|
|
url = "https://twitter.com/halffrost"
|
|
weight = 40
|
|
[[menu.before]]
|
|
name = "Weibo"
|
|
url = "https://weibo.com/halfrost"
|
|
weight = 50
|
|
#[[menu.after]]
|
|
# name = "Github"
|
|
# url = "https://github.com/alex-shpak/hugo-book"
|
|
# weight = 10
|
|
|
|
#[[menu.after]]
|
|
# name = "Hugo Themes"
|
|
# url = "https://themes.gohugo.io/hugo-book/"
|
|
# weight = 20
|
|
#[[menu.before]]
|
|
# name = "微信公众号"
|
|
# url = "https://halfrost.com"
|
|
# weight = 30
|
|
|
|
[params]
|
|
# (Optional, default true) Controls table of contents visibility on right side of pages.
|
|
# Start and end levels can be controlled with markup.tableOfContents setting.
|
|
# You can also specify this parameter per page in front matter.
|
|
BookToC = false
|
|
=======
|
|
baseURL = "http://example.org"
|
|
title = "Hugo Zzo Theme"
|
|
theme = "zzo"
|
|
>>>>>>> 0c736c4... Change to zdoc
|
|
|
|
defaultContentLanguage = "en"
|
|
defaultContentLanguageInSubdir = true
|
|
hasCJKLanguage = true
|
|
|
|
summaryLength = 70
|
|
buildFuture = true
|
|
|
|
copyright = "©{year}, All Rights Reserved"
|
|
timeout = 10000
|
|
enableEmoji = true
|
|
paginate = 13
|
|
rssLimit = 100
|
|
|
|
enableGitInfo = false
|
|
googleAnalytics = ""
|
|
|
|
[markup]
|
|
[markup.goldmark]
|
|
[markup.goldmark.renderer]
|
|
hardWraps = true
|
|
unsafe = true
|
|
xHTML = true
|
|
[markup.highlight]
|
|
codeFences = true
|
|
lineNos = true
|
|
lineNumbersInTable = true
|
|
noClasses = false
|
|
[markup.tableOfContents]
|
|
endLevel = 4
|
|
ordered = false
|
|
startLevel = 2
|
|
|
|
[outputs]
|
|
home = ["HTML", "RSS", "SearchIndex"]
|
|
section = ["HTML", "RSS", "SearchIndex"]
|
|
taxonomyTerm = ["HTML", "RSS", "SearchIndex"]
|
|
taxonomy = ["HTML", "RSS", "SearchIndex"]
|
|
|
|
[outputFormats]
|
|
[outputFormats.SearchIndex]
|
|
mediaType = "application/json"
|
|
baseName = "index"
|
|
isPlainText = true
|
|
notAlternative = true
|
|
|
|
[taxonomies]
|
|
category = "categories"
|
|
tag = "tags"
|
|
series = "series" |