2019-10-27 10:58:58 +00:00
|
|
|
# hugo server --minify --themesDir ... --baseURL=http://0.0.0.0:1313/theme/hugo-book/
|
2018-10-08 18:56:06 +00:00
|
|
|
|
2019-05-22 08:23:34 +00:00
|
|
|
baseURL = 'https://example.com/'
|
|
|
|
title = 'Hugo Book'
|
|
|
|
theme = 'hugo-book'
|
|
|
|
disableKinds = ['taxonomy', 'taxonomyTerm']
|
2018-09-29 23:31:24 +00:00
|
|
|
|
|
|
|
# Book configuration
|
2019-05-22 08:23:34 +00:00
|
|
|
disablePathToLower = true
|
|
|
|
enableGitInfo = true
|
2018-09-29 23:31:24 +00:00
|
|
|
|
2019-03-29 15:15:43 +00:00
|
|
|
# Code highlight
|
2019-05-22 14:17:55 +00:00
|
|
|
# pygmentsStyle = 'monokailight'
|
2019-05-22 08:23:34 +00:00
|
|
|
pygmentsCodeFences = true
|
2019-03-29 15:15:43 +00:00
|
|
|
|
2019-11-09 22:27:11 +00:00
|
|
|
# Multilang config
|
|
|
|
defaultContentLanguage = 'en'
|
|
|
|
|
|
|
|
[languages]
|
2019-11-10 13:35:07 +00:00
|
|
|
[languages.en]
|
|
|
|
languageName = 'English'
|
|
|
|
weight = 1
|
|
|
|
|
|
|
|
[languages.ru]
|
|
|
|
languageName = 'Russian'
|
|
|
|
weight = 2
|
|
|
|
|
|
|
|
[languages.cn]
|
|
|
|
languageName = 'Chinese'
|
|
|
|
weight = 3
|
2019-11-09 22:27:11 +00:00
|
|
|
|
2019-05-22 08:23:34 +00:00
|
|
|
[params]
|
2019-05-27 14:48:23 +00:00
|
|
|
# (Optional, default 6) Set how many table of contents levels to be showed on page.
|
|
|
|
# Use false to hide ToC, note that 0 will default to 6 (https://gohugo.io/functions/default/)
|
2019-02-19 23:27:25 +00:00
|
|
|
# You can also specify this parameter per page in front matter
|
2019-05-27 14:48:23 +00:00
|
|
|
BookToC = 3
|
2018-09-29 23:31:24 +00:00
|
|
|
|
2019-09-01 18:05:34 +00:00
|
|
|
# (Optional, default none) Set the path to a logo for the book. If the logo is
|
2019-09-05 21:01:40 +00:00
|
|
|
# /static/logo.png then the path would be logo.png
|
|
|
|
# BookLogo = 'logo.png'
|
2019-09-01 18:05:34 +00:00
|
|
|
|
2019-02-19 23:27:25 +00:00
|
|
|
# (Optional, default none) Set leaf bundle to render as side menu
|
|
|
|
# When not specified file structure and weights will be used
|
2019-10-08 23:00:26 +00:00
|
|
|
# BookMenuBundle = '/menu'
|
2018-09-29 23:31:24 +00:00
|
|
|
|
2019-02-19 23:27:25 +00:00
|
|
|
# (Optional, default docs) Specify section of content to render as menu
|
2019-05-22 08:23:34 +00:00
|
|
|
# You can also set value to '*' to render all sections to menu
|
|
|
|
BookSection = 'docs'
|
2019-02-19 23:27:25 +00:00
|
|
|
|
2018-12-15 03:53:50 +00:00
|
|
|
# Set source repository location.
|
|
|
|
# Used for 'Last Modified' and 'Edit this page' links.
|
2019-05-22 08:23:34 +00:00
|
|
|
BookRepo = 'https://github.com/alex-shpak/hugo-book'
|
2018-12-15 03:53:50 +00:00
|
|
|
|
2018-12-03 07:22:05 +00:00
|
|
|
# Enable "Edit this page" links for 'doc' page type.
|
2018-12-15 03:53:50 +00:00
|
|
|
# Disabled by default. Uncomment to enable. Requires 'BookRepo' param.
|
2019-02-19 23:27:25 +00:00
|
|
|
# Path must point to 'content' directory of repo.
|
2019-05-22 08:23:34 +00:00
|
|
|
BookEditPath = 'edit/master/exampleSite/content'
|
2019-03-29 15:59:00 +00:00
|
|
|
|
|
|
|
# Configure the date format used on the pages
|
|
|
|
# - In git information
|
|
|
|
# - In blog posts
|
2019-05-22 08:23:34 +00:00
|
|
|
BookDateFormat = 'Jan 2, 2006'
|
2019-07-15 16:25:21 +00:00
|
|
|
|
2019-11-13 23:23:01 +00:00
|
|
|
# (Optional, default true) Enables search function with flexsearch,
|
2019-07-16 12:34:02 +00:00
|
|
|
# Index is built on fly, therefore it might slowdown your website.
|
2019-07-15 16:25:21 +00:00
|
|
|
BookSearch = true
|
2019-10-27 10:58:58 +00:00
|
|
|
|