-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config.toml -> yaml; move todo list to changes.log
- Loading branch information
1 parent
6f00919
commit d53b259
Showing
3 changed files
with
23 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
*~ | ||
push | ||
changes.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,45 @@ | ||
# config.toml for figset module | ||
# config.yaml for figset module | ||
|
||
# These are the bits that modules using this one will get: | ||
[module.hugoVersion] | ||
# Need at least 64 for ? and extended for SASS | ||
min = "0.64.0" | ||
extended = true | ||
|
||
# FIXME why does it work when I've only done this much -- perhaps things in the same place are automatic | ||
#[[module.mounts]] | ||
# source = "assets/sass/figset.scss" | ||
# target = "assets/sass/figset.scss" | ||
module: | ||
hugoVersion: | ||
# Need at least 64 for ? | ||
min = "0.64.0" | ||
|
||
# ?? TODO can we set default imaging things here? | ||
[imaging] | ||
imaging: | ||
# Default resample filter used for resizing. Default is Box, | ||
# a simple and fast averaging filter appropriate for downscaling. | ||
# See https://github.com/disintegration/imaging | ||
# box | Lanczos | ... | ||
resampleFilter = "Lanczos" | ||
format = "jpg" | ||
resampleFilter: "Lanczos" | ||
format: "jpg" | ||
# Default JPEG quality setting. Default is 75. | ||
quality = 90 | ||
quality: 90 | ||
# Anchor used when cropping pictures. | ||
# Default is "smart" which does Smart Cropping, using https://github.com/muesli/smartcrop | ||
# Smart Cropping is content aware and tries to find the best crop for each image. | ||
# Valid values are Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight | ||
#anchor = "smart" | ||
#anchor: "smart" | ||
# Default background color. | ||
# Hugo will preserve transparency for target formats that support it, | ||
# but will fall back to this color for JPEG. | ||
# Expects a standard HEX color string with 3 or 6 digits. | ||
#bgColor = "#ffffff" | ||
[imaging.exif] | ||
#bgColor: "#ffffff" | ||
exif: | ||
# Regexp matching the fields you want to Exclude from the (massive) set of Exif info | ||
# available. As we cache this info to disk, this is for performance and | ||
# disk space reasons more than anything. | ||
# If you want it all, put ".*" in this config setting. | ||
# Note that if neither this or ExcludeFields is set, Hugo will return a small | ||
# default set. | ||
includeFields = "" | ||
includeFields: "" | ||
# Regexp matching the Exif fields you want to exclude. This may be easier to use | ||
# than IncludeFields above, depending on what you want. | ||
excludeFields = ".*" | ||
excludeFields: ".*" | ||
# Hugo extracts the "photo taken" date/time into .Date by default. | ||
# Set this to true to turn it off. | ||
disableDate = true | ||
disableDate: true | ||
# Hugo extracts the "photo taken where" (GPS latitude and longitude) into | ||
# .Long and .Lat. Set this to true to turn it off. | ||
disableLatLong = true | ||
disableLatLong: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters