From 098edd1266282d529f8aafb859e8e9fad736a003 Mon Sep 17 00:00:00 2001 From: Bryton Hall Date: Thu, 6 Jul 2023 22:37:21 -0400 Subject: [PATCH] docs: reformat hugo toml config to yaml This is the only toml file in the repo now so lets just stick with yaml which is a far more common format given the context of this project. --- docs/config.toml | 14 -------------- docs/hugo.yaml | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 14 deletions(-) delete mode 100644 docs/config.toml create mode 100644 docs/hugo.yaml diff --git a/docs/config.toml b/docs/config.toml deleted file mode 100644 index 1e2610d..0000000 --- a/docs/config.toml +++ /dev/null @@ -1,14 +0,0 @@ -title = "kubenix" -theme = "hugo-book" -baseURL = "https://kubenix.org/" - -[markup.highlight] -style = "nord" - -[params] -BookLogo = "logo.svg" -BookRepo = "https://github.com/hall/kubenix" -BookEditPath = 'edit/main/docs' -BookSection = '*' -# most pages at this time are auto-generated so editing doesn't make sense -# BookEditPath = 'edit/main/docs' diff --git a/docs/hugo.yaml b/docs/hugo.yaml new file mode 100644 index 0000000..d461e3b --- /dev/null +++ b/docs/hugo.yaml @@ -0,0 +1,15 @@ +title: kubenix +theme: hugo-book +baseURL: https://kubenix.org/ + +markup: + highlight: + style: nord + +params: + BookLogo: logo.svg + BookRepo: https://github.com/hall/kubenix + BookEditPath: edit/main/docs + BookSection: "*" + # most pages at this time are auto-generated so editing doesn't make sense + # BookEditPath: edit/main/docs