ref: 1827680beaf10c0710b3daed2cf1f6679c9a070a
parent: 09ed3c4b92a791bf91c291b83b24013494ae92a5
author: karland <[email protected]>
date: Mon Feb 16 15:43:20 EST 2015
List of variables Some variables are currently not documented and others are explained across the document. So, I tried to pull an overview from the source. Pls double check. I am not 100% sure, what the purpose of some variables is or whether they are only relevant for previous versions. Thanks
--- a/docs/content/overview/configuration.md
+++ b/docs/content/overview/configuration.md
@@ -67,6 +67,79 @@
SidebarRecentLimit: 5
...
+## Configuration variables
+
+Following is a list of Hugo-defined variables that you can configure and their current default values:
+
+ ---
+ archetypedir: "archetype"
+ # hostname (and path) to the root eg. http://spf13.com/
+ baseurl: ""
+ # include content marked as draft
+ buildDrafts: false
+ # include content with datePublished in the future
+ buildFuture: false
+ canonifyUrls: false
+ # config file (default is path/config.yaml|json|toml)
+ config: "config.toml"
+ contentdir: "content"
+ dataDir: "data"
+ defaultExtension: "html"
+ defaultLayout: "post"
+ # filesystem path to write files to
+ destination: ""
+ disableLiveReload: false
+ # Do not build RSS files
+ disableRSS: false
+ # Do not build Sitemap file
+ disableSitemap: false
+ # edit new content with this editor, if provided
+ editor: ""
+ footnoteAnchorPrefix: ""
+ footnoteReturnLinkContents: ""
+ languageCode: ""
+ layoutdir: "layouts"
+ # Enable Logging
+ log: false
+ # Log File path (if set, logging enabled automatically)
+ logFile: ""
+ # "yaml", "toml", "json"
+ metaDataFormat: "toml"
+ newContentEditor: ""
+ # Don't sync modification time of files
+ noTimes: false
+ paginate: 10
+ paginatePath: "page"
+ permalinks:
+ # Pluralize titles in lists using inflect
+ pluralizeListTitles: true
+ publishdir: "public"
+ # color-codes for highlighting derived from this style
+ pygmentsStyle: "monokai"
+ # true: use pygments-css or false: color-codes directly
+ pygmentsUseClasses: false
+ sitemap: ""
+ # filesystem path to read files relative from
+ source: ""
+ staticdir: "static"
+ # display memory and timing of different steps of the program
+ stepAnalysis: false
+ # theme to use (located in /themes/THEMENAME/)
+ theme: ""
+ title: ""
+ # if true, use /filename.html instead of /filename/
+ uglyUrls: false
+ # verbose output
+ verbose: false
+ # verbose logging
+ verboseLog: false
+ # watch filesystem for changes and recreate as needed
+ watch: false
+ ---
+
+
+
+
## Configure Blackfriday rendering
[Blackfriday](https://github.com/russross/blackfriday) is the [Markdown](http://daringfireball.net/projects/markdown/) rendering engine used in Hugo. The Blackfriday configuration in Hugo is mostly a set of sane defaults that should fit most use cases.