diff options
author | Matt Strapp <matt@mattstrapp.net> | 2022-10-20 11:45:56 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2022-10-20 11:53:32 -0500 |
commit | 1ea9275a02e7d158c71cc25e958148ed3aff9e49 (patch) | |
tree | d3e414692a72219738a4c6e7587d3ab0724519f1 | |
parent | optimize images (diff) | |
download | website-1ea9275a02e7d158c71cc25e958148ed3aff9e49.tar website-1ea9275a02e7d158c71cc25e958148ed3aff9e49.tar.gz website-1ea9275a02e7d158c71cc25e958148ed3aff9e49.tar.bz2 website-1ea9275a02e7d158c71cc25e958148ed3aff9e49.tar.lz website-1ea9275a02e7d158c71cc25e958148ed3aff9e49.tar.xz website-1ea9275a02e7d158c71cc25e958148ed3aff9e49.tar.zst website-1ea9275a02e7d158c71cc25e958148ed3aff9e49.zip |
format the TOML
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | config.toml | 94 |
1 files changed, 49 insertions, 45 deletions
diff --git a/config.toml b/config.toml index 0c8c37c..2047430 100644 --- a/config.toml +++ b/config.toml @@ -5,66 +5,70 @@ theme = "hugo-coder" enableRobotsTXT = true [markup] - [markup.goldmark] - [markup.goldmark.renderer] - unsafe = true - [markup.highlight] - style = "pastie" +[markup.goldmark] +[markup.goldmark.renderer] +unsafe = true +[markup.highlight] +style = "pastie" + +[minify] +disableXML = true +minifyOutput = true [params] - # author = "Matt Strapp" - info = "As good as it'll be, part 2" - description = "Matt Strapp's personal website" - keywords = "developer,personal" - avatarurl = "images/avatar.png" - #gravatar = "matt@mattstrapp.net" +# author = "Matt Strapp" +info = "As good as it'll be, part 2" +description = "Matt Strapp's personal website" +keywords = "developer,personal" +avatarurl = "images/avatar.png" +#gravatar = "matt@mattstrapp.net" - favicon_32 = "/images/favicon-32x32.png" - favicon_16 = "/images/favicon-16x16.png" +favicon_32 = "/images/favicon-32x32.png" +favicon_16 = "/images/favicon-16x16.png" - since = 2018 +since = 2018 - enableTwemoji = true +enableTwemoji = true - colorScheme = "dark" - hidecolorschemetoggle = false +colorScheme = "dark" +hidecolorschemetoggle = false - pygmentsstyle = "pastie" - pygmentscodefences = true - pygmentscodefencesguesssyntax = true +pygmentsstyle = "pastie" +pygmentscodefences = true +pygmentscodefencesguesssyntax = true [[params.social]] - name = "Git repositories" - icon = "fa fa-git fa-2x" - weight = 1 - url = "https://git.mattstrapp.net" +name = "Git repositories" +icon = "fa fa-git fa-2x" +weight = 1 +url = "https://git.mattstrapp.net" [[menu.main]] - name = "About" - weight = 1 - url = "about/" +name = "About" +weight = 1 +url = "about/" [[menu.main]] - name = "Contact" - weight = 2 - url = "about/#contact" +name = "Contact" +weight = 2 +url = "about/#contact" [[menu.main]] - name = "Resume" - weight = 3 - url = "resume/" +name = "Resume" +weight = 3 +url = "resume/" [privacy] - [privacy.disqus] - disable = true - [privacy.googleAnalytics] - disable = true - [privacy.instagram] - disable = true - [privacy.twitter] - disable = true - [privacy.vimeo] - disable = true - [privacy.youtube] - disable = true +[privacy.disqus] +disable = true +[privacy.googleAnalytics] +disable = true +[privacy.instagram] +disable = true +[privacy.twitter] +disable = true +[privacy.vimeo] +disable = true +[privacy.youtube] +disable = true |