mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
106 lines
3.8 KiB
TOML
106 lines
3.8 KiB
TOML
archetypedir = "archetypes"
|
|
baseurl = "/"
|
|
buildDrafts = false
|
|
buildFuture = false
|
|
canonifyurls = true
|
|
# Pointing to this file
|
|
config = "config.toml"
|
|
contentdir = "content"
|
|
copyright = ""
|
|
defaultContentLanguage = "en"
|
|
# Set to true is you don't want livereload in local development
|
|
disableLiveReload = false
|
|
# Set to true to keep url path preserve casing (eg, for sections)
|
|
disablePathToLower = false
|
|
# Set to false if you want rss xml files auto-generated
|
|
disableRSS = false
|
|
# Set to false if you want a sitemap.xml created at the site root
|
|
disableSitemap = false
|
|
# Set the unicode character used for the "return" link in page footnotes.
|
|
footnotereturnlinkcontents = "↩"
|
|
# Create an array of files you don't want hugo to build
|
|
ignoreFiles = []
|
|
languageCode = "en-us"
|
|
# Point the generator to the folder used for layouts and templating
|
|
layoutDir = "layouts"
|
|
# Enable Logging
|
|
log = true
|
|
# Log Filepath (if set, logging enabled automatically)
|
|
logFile = ""
|
|
# This accepts yaml, toml, or json
|
|
metaDataFormat = "yaml"
|
|
# This intelligently adds an "s" to the titles of list pages
|
|
pluralizelisttitles = false
|
|
preserveTaxonomyNames = true
|
|
# This sets the title of the directory where hugo builds and pushes the final site when running "Hugo" (ie, without "server")
|
|
publishdir = "public"
|
|
pygmentsUseClasses = true
|
|
relativeURLs = true
|
|
source = ""
|
|
# Display memory and timing of different steps of the program
|
|
stepAnalysis = true
|
|
# This is the top-level, global site title
|
|
title = "Hugo"
|
|
# Change this once you've created your theme
|
|
theme = ""
|
|
# Set to true to convert mysite/section/ to mysite/section.html
|
|
uglyURLs = false
|
|
verbose = false
|
|
verboseLog = false
|
|
# Setting this to false will keep hugo from watching for changes during local development
|
|
watch = true
|
|
|
|
[permalinks]
|
|
temp = "/:title"
|
|
|
|
#CUSTOM PARAMS
|
|
[params]
|
|
organizationname = ""
|
|
sitedescription = ""
|
|
release = "0.20 DEV"
|
|
# Add GA Tracking Code Here. This leverages a built-in (ie, "internal") partial from HUGO: https://gohugo.io/extras/analytics#configuring-google-analytics
|
|
googleanalyticstrackingcode = ""
|
|
## Critical Render Path. If true, site style will be embedded in a <style> tag in each html <head> as part of Gulp Build. False puts a typical <link> to the stylesheet in <head>>
|
|
usecrp = false
|
|
## Include jQuery 2.2.4 in your site head. (see /static/assets/js)
|
|
includejq = false
|
|
## Date the Site is Published, use YYYY-MM-DD
|
|
sitepublishdate = ""
|
|
## Twitter handle without the "@"
|
|
twitterhandle = "GoHugoIO"
|
|
## Facebook URL
|
|
facebook = ""
|
|
## Default Image for Social Sharing. This image should live at static/images/
|
|
defaultsocialimage = "hugodefaultsocial.png"
|
|
## Setting this to true will add a "noindex" to *every* page on the site
|
|
removefromexternalsearch = true
|
|
## This is used when the BaseURL does not need to modified (eg, in share links)
|
|
siteaddress = "https://hugodocsconcept.netlify.com"
|
|
## Gh repo for site footer (include trailing slash)
|
|
ghrepo = "https://github.com/spf13/hugo/"
|
|
## GitHub Docs Repository Base URL (include trailing slash)
|
|
### https://github.com/spf13/hugo/tree/master/docs
|
|
ghdocsrepo = "https://github.com/rdwatters/hugo-docs-concept/edit/master/"
|
|
### Edit content repo
|
|
## Github Wiki for Documentation
|
|
ghdocswiki = ""
|
|
## Github Wiki for Development
|
|
ghdevwiki = ""
|
|
## Gitter URL
|
|
gitter = "https://gitter.im/spf13/hugo"
|
|
## Discuss Forum URL
|
|
forum = "https://discuss.hugo.io"
|
|
gtmid = ""
|
|
# Set to true to include a CDN call to FontAwesome (not that Hugo docs currently hosts its own FA (see pipeline/scss/_variables.scss))
|
|
usefontawesome = false
|
|
# MARKDOWN
|
|
## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday
|
|
[blackfriday]
|
|
plainIDAnchors = true
|
|
hrefTargetBlank = true
|
|
angledQuotes = false
|
|
latexDashes = true
|
|
|
|
[taxonomies]
|
|
tag = "tags"
|
|
category = "categories" |