package config
import "github.com/gohugoio/hugo/config"
Index ¶
- Variables
- func FromFileToMap(fs afero.Fs, filename string) (map[string]interface{}, error)
- func GetStringSlicePreserveString(cfg Provider, key string) []string
- func IsValidConfigFilename(filename string) bool
- func RenameKeys(m map[string]interface{})
- type Provider
Variables ¶
var ( ValidConfigFileExtensions = []string{"toml", "yaml", "yml", "json"} )
Functions ¶
func FromFileToMap ¶
FromFileToMap is the same as FromFile, but it returns the config values as a simple map.
func GetStringSlicePreserveString ¶
GetStringSlicePreserveString returns a string slice from the given config and key. It differs from the GetStringSlice method in that if the config value is a string, we do not attempt to split it into fields.
func IsValidConfigFilename ¶
IsValidConfigFilename returns whether filename is one of the supported config formats in Hugo.
func RenameKeys ¶
func RenameKeys(m map[string]interface{})
RenameKeys renames config keys in m recursively according to a global Hugo alias definition.
Types ¶
type Provider ¶
type Provider interface { GetString(key string) string GetInt(key string) int GetBool(key string) bool GetStringMap(key string) map[string]interface{} GetStringMapString(key string) map[string]string GetStringSlice(key string) []string Get(key string) interface{} Set(key string, value interface{}) IsSet(key string) bool }
Provider provides the configuration settings for Hugo.
func FromConfigString ¶
FromConfigString creates a config from the given YAML, JSON or TOML config. This is useful in tests.
func FromFile ¶
FromFile loads the configuration from the given filename.
Source Files ¶
configLoader.go configProvider.go
Directories ¶
Path | Synopsis |
---|---|
config/privacy | |
config/services |
- Version
- v0.54.0
- Published
- Feb 1, 2019
- Platform
- darwin/amd64
- Imports
- 7 packages
- Last checked
- 30 minutes ago –
Tools for package owners.